-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (34 loc) · 1.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
{
"version": "1.0.6",
"name": "API Monitor",
"manifest_version": 3,
"description": "Reveal active or passed timeouts, intervals, and eval invocation call stacks. Observe events and properties of media elements",
"minimum_chrome_version": "122.0",
"homepage_url": "https://github.com/zendive/browser-api-monitor",
"author": "[email protected]",
"permissions": ["storage"],
"host_permissions": ["*://*/*"],
"devtools_page": "public/api-monitor-devtools.html",
"icons": {
"28": "public/img/panel-icon28.png",
"64": "public/img/panel-icon64.png",
"128": "public/img/panel-icon128.png"
},
"content_scripts": [
{
"world": "MAIN",
"js": ["public/build/api-monitor-cs-main.js"],
"matches": ["<all_urls>"],
"match_origin_as_fallback": true,
"all_frames": false,
"run_at": "document_start"
},
{
"js": ["public/build/api-monitor-cs-isolated.js"],
"matches": ["<all_urls>"],
"match_origin_as_fallback": true,
"all_frames": false,
"run_at": "document_start"
}
]
}