Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何添加多个既不是在后台运行也不是内容脚本的“额外”页面?
它类似于选项页面,但不是选项页面。
我在文档中找不到类似的东西,或者我的术语混淆了。
提前致谢。
编辑:
为了澄清:
我想展示的示例页面:
您可以将这些 html/css/js 文件添加到扩展中的任何位置,然后像普通网页一样调用它们。假设它们与您的background.js文件位于同一目录中,您将获取帮助页面的 url,如下所示:
background.js
var helpPageUrl = chrome.extension.getURL('help.html');
然后,您将tabs在单击事件中使用 api 进行适当的上下文菜单操作:
tabs
chrome.tabs.create({ url: helpPageUrl });