chrome-plugin-demo/simple-chrome-plugin-demo/manifest.json

28 lines
547 B
JSON
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"manifest_version": 2,
"name": "Chrome插件demo",
"version": "1.0",
"description": "最简单的Chrome插件demo需要快速做一个简单的插件时可以基于这个仓库开发",
"author": "sxei",
"icons":
{
"48": "icon.png",
"128": "icon.png"
},
"browser_action":
{
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts":
[
{
"matches": ["https://www.baidu.com/*"],
"js": ["content-script.js"]
}
],
"web_accessible_resources":
[
"inject.js"
]
}