| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Chromium Buildbot Monitor", | 2 "name": "Chromium Buildbot Monitor", |
| 3 "version": "0.7", | 3 "version": "0.7", |
| 4 "description": "Displays the status of the Chromium buildbot in the extension
toolstrip. On hover, expands to give more detail about each bot.", | 4 "description": "Displays the status of the Chromium buildbot in the extension
toolstrip. On hover, expands to give more detail about each bot.", |
| 5 "icons": { "128": "icon.png" }, | 5 "icons": { "128": "icon.png" }, |
| 6 "background_page": "bg.html", | 6 "background_page": "bg.html", |
| 7 "permissions": [ | 7 "permissions": [ |
| 8 "http://build.chromium.org/", | 8 "http://build.chromium.org/", |
| 9 "http://chromium-status.appspot.com/", | 9 "http://chromium-status.appspot.com/", |
| 10 "http://chrome-buildbot.corp.google.com/" | 10 "http://chrome-buildbot.corp.google.com/" |
| 11 ], | 11 ], |
| 12 "browser_action": { | 12 "browser_action": { |
| 13 "name": "Buildbot status", | 13 "default_title": "", |
| 14 "icons": ["chromium.png"], | 14 "default_icon": "chromium.png", |
| 15 "popup": "popup.html" | 15 "popup": "popup.html" |
| 16 } | 16 } |
| 17 } | 17 } |
| OLD | NEW |