-
Notifications
You must be signed in to change notification settings - Fork 31
/
manifest.json
45 lines (38 loc) · 959 Bytes
/
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
{
"manifest_version": 2,
"name": "Pulsarr",
"author": "roboticsound",
"description": "Add movies/series to Radarr/Sonarr from IMDB and TVDB",
"version": "2.1",
"icons": {
"16": "/img/icons/pulsarr/16.png",
"32": "/img/icons/pulsarr/32.png",
"48": "/img/icons/pulsarr/48.png",
"128": "/img/icons/pulsarr/128.png"
},
"background": {
"scripts": ["background.js"],
"persistent": true
},
"page_action": {
"default_icon": {
"16": "/img/icons/pulsarr/16.png",
"32": "/img/icons/pulsarr/32.png",
"48": "/img/icons/pulsarr/48.png"
},
"default_popup": "popup.html",
"default_title": "Add to Radarr"
},
"options_ui": {
"page": "/opt/options.html",
"chrome_style": false
},
"content_security_policy": "script-src 'self'; object-src 'self' ",
"permissions": [
"activeTab",
"tabs",
"webNavigation",
"https://ajax.googleapis.com/",
"<all_urls>"
]
}