如何使用Chrome扩展程序在特定的Wepbage上运行脚本?

时间:2016-10-13 18:55:18

标签: javascript google-chrome-extension

我有一个我想在特定页面上运行的脚本。我将如何使用Google Chrome扩展程序进行此操作?

1 个答案:

答案 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