-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
51 lines (39 loc) · 1.09 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
45
46
47
48
49
50
51
{
"manifest_version": 2,
"name": "Political and COVID-19 News Study",
"author": "Princeton CITP",
"version": "3.1.0",
"description": "A Rally study on how web users engage with news about politics and COVID-19.",
"icons": {
"48": "icons/princeton_university_shield_book_gray.svg",
"96": "icons/princeton_university_shield_book_gray.svg"
},
"background": {
"scripts": ["dist/background.js"],
"persistent": true
},
"permissions": [
"<all_urls>",
"idle",
"notifications",
"storage",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking",
"history"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "87.0"
}
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icons/princeton_university_shield_book_gray.svg"
}
},
"incognito": "not_allowed"
}