Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / incognito / content_scripts / manifest.json
blobc159a0c3aaf796af70b1580ee642a397472f4702
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_end"
12     }
13   ]