Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / extensions / buildbot / manifest.json
1 {
2   "name": "Chromium Buildbot Monitor",
3   "version": "0.9.0",
4   "description": "Displays the status of the Chromium buildbot in the toolbar.  Click to see more detailed status in a popup.",
5   "icons": { "128": "icon.png" },
6   "background": {
7     "scripts": ["utils.js",
8                 "prefs.js",
9                 "try_status.js",
10                 "active_issues.js",
11                 "bg.js"]
12   },
13   "permissions": [
14     "notifications",
15     "storage",
16     "http://build.chromium.org/",
17     "http://chromium-status.appspot.com/",
18     "https://codereview.chromium.org/"
19   ],
20   "browser_action": {
21     "default_title": "",
22     "default_icon": "chromium.png",
23     "default_popup": "popup.html"
24   },
25   "options_page": "options.html",
26
27   "manifest_version": 2
28 }