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

Side by Side Diff: chrome/test/data/extensions/api_test/active_tab/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 "name": "activeTab", 2 "name": "activeTab",
3 "description": "API test for activeTab", 3 "description": "API test for activeTab",
4 "version": "0.1", 4 "version": "0.1",
5 5
6 "browser_action": { 6 "browser_action": {
7 "default_title": "activeTab" 7 "default_title": "activeTab"
8 }, 8 },
9 9
10 "permissions": [ 10 "permissions": [
11 "activeTab", 11 "activeTab",
12 "tabs",
12 "webNavigation" 13 "webNavigation"
13 ], 14 ],
14 15
15 "background": { 16 "background": {
16 "scripts": ["background.js"] 17 "scripts": ["background.js"]
17 }, 18 },
18 19
19 "manifest_version": 2 20 "manifest_version": 2
20 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698