{
"manifest_version":2,
"name":"FirstChromePlugin",
"version":"1.4",
"description":"谷歌插件",
"author":"Qz1997",
"icons": {
"16":"img/1.png",
"48":"img/1.png",
"128":"img/1.png"
},
"browser_action": {
"default_icon":"img/1.png",
"default_title":"Qz第一个插件",
"default_popup": "html/main.html"
},
"background":{
"page": "html/back.html"
},
"permissions": [
"contextMenus",
"tabs",
"*://*/*",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["/js/autoBaidu1.js"],
"run_at": "document_start"
}
],
"chrome_url_overrides":{
// 新标签页相对路径
"newtab": "html/new.html"
}
}
如果想跳转其他页面 可以在new.html中 加上一下代码
<meta http-equiv="refresh" content="0.1;url=https://baidu.com"/>