-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
45 lines (45 loc) · 1.08 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
{
"manifest_version": 2,
"name": "Open in Janitor",
"version": "0.1",
"icons": {
"16": "icon.svg",
"32": "icon.svg",
"48": "icon.svg",
"96": "icon.svg"
},
"description": "A WebExtension with buttons to open anything in Janitor (source files, crash dumps, branches, code reviews...)",
"permissions": [
"tabs",
"*://searchfox.org/*",
"*://github.com/*",
"*://*.mozilla.org/*",
"*://*.mozilla.com/*"
],
"content_scripts": [
{
"matches": ["*://searchfox.org/mozilla-central/source/*"],
"js": ["searchfox-buttons.js"]
},
{
"matches": ["*://github.com/*"],
"js": ["github-buttons.js"]
},
{
"matches": ["*://reviewboard.mozilla.org/r/*"],
"js": ["mozreview-buttons.js"]
},
{
"matches": ["*://phabricator.services.mozilla.com/*"],
"js": ["phabricator-buttons.js"]
},
{
"matches": ["*://crash-stats.mozilla.com/report/*"],
"js": ["crashstats-buttons.js"]
},
{
"matches": ["*://treeherder.mozilla.org/*"],
"js": ["treeherder-buttons.js"]
}
]
}