mirror of
https://git.mirrors.martin98.com/https://github.com/cilame/v_jstools
synced 2025-10-04 10:16:34 +08:00
34 lines
703 B
JSON
34 lines
703 B
JSON
{
|
|
"name": "v_jstools",
|
|
"version": "0.0.0",
|
|
"description": "v_jstools js hook工具",
|
|
"permissions": ["storage", "activeTab", "tabs", "debugger", "storage"],
|
|
"browser_action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": false
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["http://*/*", "https://*/*"],
|
|
"run_at": "document_start",
|
|
"js": ["inject.js"],
|
|
"all_frames": true
|
|
}
|
|
],
|
|
|
|
// 暂时用不上
|
|
// "commands": {
|
|
// "attach-debugger": {
|
|
// "suggested_key": {
|
|
// "default": "Alt+Shift+D"
|
|
// },
|
|
// "description": "Attach"
|
|
// }
|
|
// },
|
|
|
|
"manifest_version": 2
|
|
}
|