This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
forked from Tinkoff/jira-helper
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
52 lines (52 loc) · 1.41 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
52
{
"manifest_version": 3,
"name": "jira-helper",
"short_name": "jira-helper",
"version": "2.18.2",
"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"
},
"minimum_chrome_version": "88",
"action": {
"default_icon": {
"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"
},
"default_title": "Jira Helper"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": ["img/*"],
"use_dynamic_url": true
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"matches": [ "*://*/*" ],
"js": [ "content.js" ],
"css": [ "src/blurSensitive.css" ]
}
],
"permissions": [
"storage",
"tabs",
"contextMenus"
],
"host_permissions": ["http://*/*", "https://*/*"]
}