-
Notifications
You must be signed in to change notification settings - Fork 30
/
manifest.json
62 lines (52 loc) · 1.3 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
53
54
55
56
57
58
59
60
61
62
{
"manifest_version": 3,
"name": "GitHub Jira Integration",
"version": "1.3.0",
"description": "This extension shows contents of linked tasks from Jira in Github",
"author": "Rob Quist / DukeSoft",
"homepage_url": "https://github.com/RobQuistNL/chrome-github-jira",
"options_ui": {
"page": "src/options.html"
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png",
"256": "images/icon256.png",
"512": "images/icon512.png"
},
"web_accessible_resources": [
{
"resources": [
"images/jira.png"
],
"matches": [
"*://github.com/*"
]
}
],
"content_scripts": [
{
"matches": ["*://github.com/*"],
"js": ["src/content.js"],
"run_at": "document_end"
}
],
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https://*.atlassian.net/",
"https://*.jira.com/",
"http://*.atlassian.net/",
"http://*.jira.com/"
],
"optional_permissions": [
"*://*/*"
],
"background": {
"service_worker": "src/background.js",
"type": "module"
}
}