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

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

Issue 10829186: Tabs API is usable without tabs permission. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: ETU now SetString()'s for empty values Created 8 years, 3 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
OLDNEW
1 { 1 {
2 "background": { 2 "background": {
3 "scripts": ["background.js"] 3 "scripts": ["background.js"]
4 }, 4 },
5 "content_scripts": [ { 5 "content_scripts": [ {
6 "js": [ "content_script.js" ], 6 "js": [ "content_script.js" ],
7 "matches": [ "<all_urls>" ] 7 "matches": [ "<all_urls>" ]
8 } ], 8 } ],
9 "permissions": [ "tabs" ],
9 "description": "Test whether whitelisted extensions can run scripts everywher e using content script", 10 "description": "Test whether whitelisted extensions can run scripts everywher e using content script",
10 "name": "AllUrls content script permissions", 11 "name": "AllUrls content script permissions",
11 "manifest_version": 2, 12 "manifest_version": 2,
12 "version": "1.0" 13 "version": "1.0"
13 } 14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698