-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (35 loc) · 1.44 KB
/
manifest.json
File metadata and controls
35 lines (35 loc) · 1.44 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
{
"version": "1.5.0",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxQCaHgX3DkPnGmHr+rhWyPvYemxMhBbvulmj4RvEpAnGVprdPCUiHSY0jOcDn3vnU6zm8mR1mT3sdlYoUGikBIT19/Jf1iGlc2dySt2bmDQXlTrqllT/XB8HW/wruFej9waMw9yqtW1wOJtElxWnT11pzXkKeflH1Sh+//Jnplr577vOmWh9TU8JLJHS9WklPHJyXCCMGrg/0Sxqte5qWryE2yIm9375KGkKN4ZKjSIxaCg0qodhf5Ug9s2QD7/s5xt548gbEUm9LqQHkNoIH3KXuYOnLksJFxi7FDwhg+oXalsONr5eEvPjkwxYpMKJXfRSg8sB8N6cXLUfgLAKUwIDAQAB",
"name": "API Monitor",
"manifest_version": 3,
"description": "Show active intervals, scheduled timeouts, animation frames, idle callbacks, eval invocations, media, workers, scheduler API",
"minimum_chrome_version": "135.0",
"homepage_url": "https://github.com/zendive/browser-api-monitor",
"permissions": ["storage", "power"],
"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"
},
"incognito": "split",
"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"
}
]
}