-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
60 lines (60 loc) · 1.37 KB
/
manifest.json
File metadata and controls
60 lines (60 loc) · 1.37 KB
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
{
"manifest_version": 3,
"name": "API Inspector",
"version": "1.2",
"description": "Extract and analyze JS files, API calls, and WebSocket traffic",
"permissions": [
"activeTab",
"storage",
"webRequest",
"webNavigation",
"debugger",
"scripting",
"proxy",
"unlimitedStorage"
],
"host_permissions": [
"https://*/*",
"http://*/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "API Inspector"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"dashboard.html",
"dashboard/pages/httprequestpage.html",
"dashboard/pages/webshoketpage.html",
"dashboard/pages/repeterpage.html",
"dashboard/css/common.css",
"dashboard/css/httprequestpage.css",
"dashboard/css/webshoketpage.css",
"dashboard/css/repeterpage.css",
"dashboard/js/common.js",
"dashboard/js/httprequestpage.js",
"dashboard/js/webshoketpage.js",
"dashboard/js/repeterpage.js"
],
"matches": [
"<all_urls>"
]
}
]
}