- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / window_open / popup_blocking / extension / manifest.json
1 {
2   "name": "Popup blocking test",
3   "version": "1",
4   "manifest_version": 2,
5   "description": "Popup windows should never be blocked from within an extension.",
6   "permissions": ["tabs"],
7   "background": {
8     "scripts": ["pop.js", "background.js"]
9   },
10   "content_scripts": [
11     {
12       "matches": ["http://b.com/*"],
13       "js": ["pop.js", "content_script.js"]
14     }
15   ]
16 }