- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / incognito / content_scripts / manifest.json
1 {
2   "name": "incognito no script",
3   "version": "0.1",
4   "manifest_version": 2,
5   "description": "Checks that content scripts do not inject js into incognito browsers.",
6   "permissions": ["http://*/*", "https://*/*"],
7   "content_scripts": [
8     {
9       "matches": ["http://*/*", "https://*/*"],
10       "js": ["change_page_title.js"],
11       "run_at": "document_start"
12     }
13   ]
14 }