-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1 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
35
36
37
38
39
40
41
42
43
44
{
"name": "Archive-It Leak Debugger & Inspector (ALDI)",
"description": "ALDI is a Google Chrome extension that performs QA on Archive-It replays on the fly.",
"version": "2.0",
"manifest_version": 3,
"permissions": [
"activeTab",
"background",
"debugger",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"downloads",
"notifications",
"tabs",
"scripting",
"storage",
"webNavigation",
"webRequest",
"windows"
],
"host_permissions": ["<all_urls>"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_start"
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "images/icon16.png",
"default_popup": "popup.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"icons": {
"128": "images/icon128.png",
"48": "images/icon48.png",
"16": "images/icon16.png"
}
}