Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / activity_log / ad_injection / manifest.json
1 {
2   "name": "Ad-Injecting Extension",
3   "description": "An extension which pretends to inject ads into a page.",
4   "manifest_version": 2,
5   "version": "2.0",
6   "permissions": [
7     "tabs"
8   ],
9   "content_scripts": [
10     {
11       "matches": ["*://*/*"],
12       "js": ["content_script.js"]
13     }
14   ]
15 }