我有一个我想在特定页面上运行的脚本。我将如何使用Google Chrome扩展程序进行此操作?
答案 0 :(得分:0)
manifest.json
{
"name": "",
"version": "0.0.1",
"manifest_version": 2,
"content_scripts": [{
"matches": ["http://example.com/*"],
"js": ["script.js"]
}],
"permissions": [
"http://example.com/*",
"tabs"
]
}
使用该清单,在http://example.com/*
页面上,将包含script.js
文件。在提出问题之前,请先阅读documentation。