Chrome扩展程序:content_scripts匹配自定义新标签页

时间:2016-06-28 18:30:11

标签: json google-chrome-extension

我正在尝试为Chrome创建自定义新标签页。我在manifest.json中有它,所以:"chrome_url_overrides": { "newtab": "home.html" }
但是,它不会加载我在home.html中加载的脚本。我发现你需要使用content_scripts,所以现在我也有了 "content_scripts": [ { "matches": [""], "css": ["style.css"], "js": ["logic.js", "macros.js"] } ]
我在"匹配"中放入了什么?它不允许" home.html"或者" chrome:// newtab"。

0 个答案:

没有答案