-
Notifications
You must be signed in to change notification settings - Fork 753
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (49 loc) · 993 Bytes
/
manifest.json
File metadata and controls
49 lines (49 loc) · 993 Bytes
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
{
"name": "v_jstools v3",
"version": "1.0.0",
"description": "v_jstools v3 js hook工具",
"permissions": [
"unlimitedStorage",
"activeTab",
"tabs",
"debugger",
"storage",
"contextMenus",
"scripting",
"webNavigation",
"cookies",
"downloads",
"proxy"
],
"action": {
"default_icon": "tools/common/icon.png",
"default_popup": "popup.html"
},
"icons": {
"12": "tools/common/icon.png",
"48": "tools/common/icon.png",
"128": "tools/common/icon.png"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"tools/html_ai/ai_open_ui.js",
"tools/common/content.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": ["tools/html_ai/ai_panel.html"],
"matches": ["<all_urls>"]
}
],
"manifest_version": 3
}