-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 843 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 843 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
{
"manifest_version": 3,
"name": "Interzept",
"version": "25.6.4",
"description": "Quick access to Interzept - mock, modify, and override API calls. Intercept requests and debug applications efficiently.",
"permissions": ["storage", "activeTab"],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_start"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/interzept16.png",
"48": "icons/interzept48.png",
"128": "icons/interzept128.png"
}
},
"options_page": "options.html",
"icons": {
"16": "icons/interzept16.png",
"48": "icons/interzept48.png",
"128": "icons/interzept128.png"
}
}