forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
31 lines (31 loc) · 832 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
{
"name": "Chromium Buildbot Monitor",
"version": "0.9.0",
"description": "Displays the status of the Chromium buildbot in the toolbar. Click to see more detailed status in a popup.",
"icons": { "128": "icon.png" },
"background": {
"scripts": ["utils.js",
"prefs.js",
"try_status.js",
"active_issues.js",
"bg.js"]
},
"permissions": [
"notifications",
"storage",
"http://build.chromium.org/",
"http://chromium-status.appspot.com/",
"https://codereview.chromium.org/"
],
"browser_action": {
"default_title": "",
"default_icon": "chromium.png",
"default_popup": "popup.html"
},
"options_page": "options.html",
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"manifest_version": 2
}