Chromium Code Reviews| Index: chrome/test/data/extensions/error_console/browser_action_runtime_error/manifest.json |
| diff --git a/chrome/test/data/extensions/error_console/browser_action_runtime_error/manifest.json b/chrome/test/data/extensions/error_console/browser_action_runtime_error/manifest.json |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..78a19a2a70c4dedcc4d1a082154cf620e233a135 |
| --- /dev/null |
| +++ b/chrome/test/data/extensions/error_console/browser_action_runtime_error/manifest.json |
| @@ -0,0 +1,15 @@ |
| +{ |
| + "name": "Browser Action Runtime Error", |
| + "description": "An extension which causes a JS runtime error when the browser action is triggered.", |
| + "version": "1.0", |
| + "manifest_version": 2, |
| + "background": { |
| + "scripts": ["browser_action.js"] |
| + }, |
| + "permissions": [ |
| + "tabs", "*://*/*" |
| + ], |
| + "browser_action": { |
| + "name": "CauseError" |
| + } |
| +} |