Chromium Code Reviews| Index: chrome/test/data/extensions/error_console/runtime_and_manifest_errors/manifest.json |
| diff --git a/chrome/test/data/extensions/error_console/runtime_and_manifest_errors/manifest.json b/chrome/test/data/extensions/error_console/runtime_and_manifest_errors/manifest.json |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..eda11806cccd193d898b026f864629fc091d4ed9 |
| --- /dev/null |
| +++ b/chrome/test/data/extensions/error_console/runtime_and_manifest_errors/manifest.json |
| @@ -0,0 +1,24 @@ |
| +{ |
| + "manifest_version": 2, |
| + |
| + "name": "Bad Extension", |
| + "description": "Uses permissions that don't exist and writes to console.", |
| + "version": "2.0", |
| + |
| + "background": { |
| + "scripts": [ "script.js" ] |
| + }, |
| + |
| + "chrome_url_overrides": { "newtab": "blank.html" }, |
| + |
| + "permissions": [ |
| + "awesome", |
| + "coolio", |
| + "gnarly", |
|
not at google - send to devlin
2015/02/21 00:47:01
TODO(kalman): Implement the chrome.gnarly API.
|
| + "bogus", |
| + "tubular", |
|
not at google - send to devlin
2015/02/21 00:47:01
chrome.tubular sounds like fun as well.
|
| + "groovy", |
| + "amazing", |
| + "cool" |
| + ] |
| +} |