-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
41 lines (41 loc) · 1.06 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
{
"manifest_version": 2,
"name": "WebKit Bugzilla Bug Migrator",
"version": "1.6",
"description": "Copy Webkit Bugzilla bugs into Chromium issues.",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"permissions": [
"tabs",
"storage",
"https://bugs.webkit.org/*",
"https://code.google.com/p/chromium/issues/entry",
"https://code.google.com/p/chromium/issues/detail/*"
],
"background": {
"persistent": false,
"scripts": [
"js/urls.js",
"js/xhr.js",
"js/html.js",
"js/template.js",
"js/options_storage.js",
"js/wk_bug_migrator.js",
"js/urls.js",
"js/event_pages.js"
]
},
"page_action": {
"default_icon": {
"19": "img/popup19.png",
"38": "img/popup38.png"
},
"default_title": "WebKit Bugzilla Bug Migrator"
},
"web_accessible_resources": [
"img/*"
]
}