Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: chrome/test/data/extensions/api_test/incognito_no_script/manifest.json

Issue 567037: Initial work on making extensions work in incognito mode. (Closed)
Patch Set: added experimental requirement Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/test/data/extensions/api_test/browser_action/popup/manifest.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "name": "incognito no script", 2 "name": "incognito no script",
3 "version": "0.1", 3 "version": "0.1",
4 "description": "Checks that content scripts do not inject js into incognito br owsers.", 4 "description": "Checks that content scripts do not inject js into incognito br owsers.",
5 "permissions": ["http://*/*", "https://*/*"], 5 "permissions": ["http://*/*", "https://*/*", "experimental", "incognito"],
6 "content_scripts": [ 6 "content_scripts": [
7 { 7 {
8 "matches": ["http://*/*", "https://*/*"], 8 "matches": ["http://*/*", "https://*/*"],
9 "js": ["change_page_title.js"], 9 "js": ["change_page_title.js"],
10 "run_at": "document_start" 10 "run_at": "document_start"
11 } 11 }
12 ] 12 ]
13 } 13 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/browser_action/popup/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698