| Index: chrome/test/data/extensions/error_console/content_script_log_and_runtime_error/manifest.json
|
| diff --git a/chrome/test/data/extensions/error_console/content_script_log_and_runtime_error/manifest.json b/chrome/test/data/extensions/error_console/content_script_log_and_runtime_error/manifest.json
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..60fdd2a9325dc6ac2c59b03a93a1197c62f4900c
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/error_console/content_script_log_and_runtime_error/manifest.json
|
| @@ -0,0 +1,15 @@
|
| +{
|
| + "name": "Content Script Log and Runtime Error",
|
| + "description": "An extension with a context script which logs a simple message and then causes a runtime type error.",
|
| + "version": "2.0",
|
| + "permissions": [
|
| + "tabs"
|
| + ],
|
| + "content_scripts": [
|
| + {
|
| + "matches": ["*://*/*"],
|
| + "js": ["content_script.js"]
|
| + }
|
| + ],
|
| + "manifest_version": 2
|
| +}
|
|
|