forked from cilame/v_jstools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
79 lines (76 loc) · 2.05 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// {
// "name": "v_jstools",
// "version": "0.0.0",
// "description": "v_jstools js hook工具",
// "permissions": ["storage", "unlimitedStorage", "activeTab", "tabs", "debugger", "storage", "contextMenus"],
// "content_security_policy": {
// // "extension_pages": "script-src 'self' 'unsafe-eval'; object-src 'self'"
// },
// "action": {
// "default_popup": "popup.html"
// },
// "background": {
// "service_worker": "background.js"
// },
// "content_scripts": [
// {
// "matches": [ "file:///*", "http://*/*", "https://*/*" ],
// "run_at": "document_start",
// "js": ["inject.js"],
// "all_frames": true
// }
// ],
// "options_page": "options.html",
// "options_ui": {
// // "chrome_style": false,
// "open_in_tab": true,
// "page": "options.html"
// },
// "manifest_version": 3
// }
{
"name": "v_jstools",
"version": "0.0.0",
"description": "v_jstools js hook工具",
"permissions": ["unlimitedStorage",
"activeTab",
"webRequest",
"webRequestBlocking",
"tabs",
"debugger",
"storage",
"contextMenus",
"http://*/*",
"https://*/*",
"<all_urls>",
"cookies",
"downloads",
"proxy"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_popup": "popup.html"
},
"background": {
"page": "background.html",
"persistent": true
},
"devtools_page": "devtools.html",
"content_scripts": [
{
"matches": [ "file:///*", "http://*/*", "https://*/*" ],
"run_at": "document_start",
"js": ["inject.js"],
"all_frames": true
}
],
"options_page": "options.html",
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
// "chrome_url_overrides": {
// "newtab": "new_tab_overwrite.html"
// },
"manifest_version": 2
}