- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / error_console / content_script_log_and_runtime_error / manifest.json
1 {
2   "name": "Content Script Log and Runtime Error",
3   "description": "An extension with a context script which logs a simple message and then causes a runtime type error.",
4   "version": "2.0",
5   "permissions": [
6     "tabs"
7   ],
8   "content_scripts": [
9     {
10       "matches": ["*://*/*"],
11       "js": ["content_script.js"]
12     }
13   ],
14   "manifest_version": 2
15 }