forked from Tinkoff/jira-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1.2 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
{
"manifest_version": 2,
"name": "jira-helper",
"short_name": "jira-helper",
"version": "1.0.3",
"author": "[email protected]",
"description": "jira-helper",
"icons": {
"16": "src/jira_helper_16x16.png",
"32": "src/jira_helper_32x32.png",
"48": "src/jira_helper_48x48.png",
"64": "src/jira_helper_64x64.png",
"128": "src/jira_helper_128x128.png"
},
"options_page": "options.html",
"minimum_chrome_version": "55",
"browser_action": {
"default_title": "Jira Helper",
"default_icon": "src/jira_helper_128x128.png"
},
"background": {
"scripts": ["background.js", "contextMenu.js"]
},
"web_accessible_resources": [
"printcards.html",
"openModal.js",
"nativeModalScript.js",
"img/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [ "*://*/*" ],
"js": [ "content.js" ],
"css": [ "src/blurSensitive.css" ]
}
],
"permissions": [
"storage",
"tabs",
"contextMenus",
"http://*/*", "https://*/*"
]
}