chrome-plugin-demo/demo/js/content-script.js
2017-06-02 19:40:48 +08:00

17 lines
398 B
JavaScript

console.log('这是content script!');
document.addEventListener('DOMContentLoaded', function()
{
// 给谷歌搜索结果的超链接增加 _target="blank"
if(location.host == 'www.google.com.tw')
{
var objs = document.querySelectorAll('h3.r a');
for(var i=0; i<objs.length; i++)
{
objs[i].setAttribute('_target', 'blank');
}
console.log('已处理谷歌超链接!');
}
});