-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 870 Bytes
/
manifest.json
File metadata and controls
33 lines (33 loc) · 870 Bytes
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
{
"description": "Adding a button to bugzilla ui allowing to move a bug to webcompat.com",
"manifest_version": 2,
"name": "bugzilla-to-webcompat",
"version": "1.1",
"homepage_url": "https://github.com/webcompat/bugzilla-to-webcompat",
"icons": {},
"permissions": [
"tabs",
"activeTab",
"https://bugzilla.mozilla.org/show_bug.cgi?id=*",
"https://bugzilla.allizom.org/show_bug.cgi?id=*",
"https://staging.webcompat.com/*",
"https://webcompat.com/*",
"https://product-details.mozilla.org/*"
],
"content_scripts": [
{
"matches": [
"https://bugzilla.mozilla.org/show_bug.cgi?id=*",
"https://bugzilla.allizom.org/show_bug.cgi?id=*"
],
"js": [
"module_shim.js",
"utils.js",
"moveToWebcompat.js"
],
"css": [
"moveToWebcompat.css"
]
}
]
}