-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest-firefox.json
50 lines (49 loc) · 1.2 KB
/
manifest-firefox.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
45
46
47
48
49
50
{
"manifest_version": 3,
"name": "Online Privacy-Protected Synthesizer (OPPS)",
"version": "1.2.1",
"description": "OPPS: A non-profit, privacy-focused extension by Washington University & Boston University, ensuring secure, anonymous web research.",
"permissions": [
"storage",
"history",
"webRequest",
"webRequestBlocking"
],
"host_permissions": [
"<all_urls>",
"*://*.op-ps-data.org/*"
],
"background": {
"scripts": ["background.js"]
},
"action": {
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"web_accessible_resources": [
{
"resources": ["topURLs.json", "socialMediaDomains.json"],
"matches": ["<all_urls>"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{aaefbc44-c40b-408e-9b52-84163a3b50d8}",
"strict_min_version": "42.0"
}
}
}