-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
43 lines (43 loc) · 1.08 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
{
"name": "PubPeer",
"description": "Show links to existing PubPeer comments",
"version": "1.7.1",
"manifest_version": 3,
"author": "Pubpeer Foundation",
"background": {
"scripts": [
"js/utils/utils.js",
"js/utils/contentScript.js",
"js/utils/disabledHosts.js",
"js/utils/states.js",
"js/background.js"
],
"service_worker": "js/service-worker.js"
},
"permissions": ["webNavigation", "scripting", "storage"],
"browser_specific_settings": {
"gecko": {
"id": "jid1-rU2mNakSg7IiSQ@jetpack",
"strict_min_version": "121.0a1"
},
"gecko_android": {
"strict_min_version": "121.0a1"
}
},
"minimum_chrome_version": "121",
"icons": {
"16": "img/pubpeer-16x16.png",
"48": "img/pubpeer-48x48.png",
"128": "img/pubpeer-128x128.png"
},
"action": {
"default_icon": {
"20": "img/pubpeer-16x16.png",
"40": "img/pubpeer-48x48.png"
},
"default_title": "PubPeer",
"default_popup": "popup.html"
},
"content_security_policy": {},
"host_permissions": ["http://*/*", "https://*/*"]
}