]> git.wh0rd.org - chrome-ext/waterfall-buildbot-clicker.git/blame - manifest.json
initial code
[chrome-ext/waterfall-buildbot-clicker.git] / manifest.json
CommitLineData
55314fcf
MF
1{
2 "manifest_version": 2,
3 "minimum_chrome_version": "22",
4 "name": "Chromium Waterfall Job Canceler",
5 "version": "0.2",
6 "description": "Cancel most of the pending jobs on the active page.",
7 "icons": {
8 "128": "icon-128x128.png"
9 },
10 "page_action": {
11 "default_title": "Canceler"
12 },
13 "background": {
14 "persistent": false,
15 "page": "background.html"
16 },
17 "permissions": [
18 "alarms",
19 "storage",
20 "tabs",
21 "webNavigation",
22 "https://uberchromegw.corp.google.com/*",
23 "http://uberchromegw.corp.google.com/*",
24 "https://chromegw.corp.google.com/*",
25 "http://chromegw.corp.google.com/*"
26 ]
27}