-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
51 lines (50 loc) · 958 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
46
47
48
49
50
51
{
"manifest_version": 3,
"name": "bugzilla-github-extension",
"short_name": "BZ<->GH",
"description": "This extension integrates GitHub and Bugzilla",
"version": "2.1.1",
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "images/icon48.png",
"default_title": "bugzilla-github-extension",
"default_popup": "src/browser-action.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"lib/jquery-3.3.1.min.js",
"src/globals.js",
"src/content-script.js"
]
}
],
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"web_accessible_resources": [{
"resources": [
"src/injected.js",
"images/icon48.png"
],
"matches": ["<all_urls>"]
}],
"permissions": [
"storage"
],
"host_permissions": [
"https://*/",
"http://*/"
],
"options_ui": {
"page": "src/options.html"
}
}