| 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",
|
| + "bogus",
|
| + "tubular",
|
| + "groovy",
|
| + "amazing",
|
| + "cool"
|
| + ]
|
| +}
|
|
|