Google Chrome 扩展 document.title 不起作用
这是manifest.json中的代码
{
"name": "Page Title changer",
"version": "1.0",
"description": "Change the <title></title> of a page",
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": ["http://*/*"],
"js": ["changetitle.js"]
}
]
}
,这是changetitle.js文件中的代码
chrome.browserAction.onClicked.addListener(function() {
document.title = 'new page title';
});
我不明白为什么它不起作用,我在编写此扩展时检查了谷歌代码文档。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如文档中详细说明的,您不能使用
chrome.*
内容脚本中的 API,除了某些chrome.extension.*
方法。不过,这并不会真正限制您,因为您可以使用消息传递来调用您的来自后台页面的内容脚本。例如;
background.html
changetitle.js
您当然需要 tabs 权限才能使用此技术。
As detailed in the documentation you cannot use
chrome.*
API within content scripts except for somechrome.extension.*
methods.However, this doesn't really limit you as you can use messaging to call your content script from your background page. For example;
background.html
changetitle.js
You will of course require the tabs permission in order to use this technique.
这适用于任何 URI 方案
manifest.json
background.html
changetitle.js
This one will work in any URI Scheme
manifest.json
background.html
changetitle.js
试试这个:
Try this: