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

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

Issue 10880064: Make extension commands grant the activeTab permission. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 8 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/data/extensions/api_test/keybinding/basics/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": "Conflicting keybinding test, duplicate of Basics extension (dir next to this), but uses different colors", 2 "name": "Conflicting keybinding test, duplicate of Basics extension (dir next to this), but uses different colors",
3 "version": "1.0", 3 "version": "1.0",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "background": { 5 "background": {
6 "scripts": ["background.js"] 6 "scripts": ["background.js"]
7 }, 7 },
8 "permissions": [ 8 "permissions": ["activeTab"],
9 "tabs", "http://*/*"
10 ],
11 "browser_action": { 9 "browser_action": {
12 "default_title": "Make this page green" 10 "default_title": "Make this page green"
13 }, 11 },
14 "commands": { 12 "commands": {
15 "toggle-feature": { 13 "toggle-feature": {
16 "suggested_key": { 14 "suggested_key": {
17 "windows": "Ctrl+Shift+Y", 15 "windows": "Ctrl+Shift+Y",
18 "mac": "MacCtrl+Shift+Y", 16 "mac": "MacCtrl+Shift+Y",
19 "linux": "Ctrl+Shift+Y", 17 "linux": "Ctrl+Shift+Y",
20 "chromeos": "Ctrl+Shift+Y", 18 "chromeos": "Ctrl+Shift+Y",
21 "default": "Ctrl+Shift+Y" 19 "default": "Ctrl+Shift+Y"
22 }, 20 },
23 "description": "Toggle feature foo" 21 "description": "Toggle feature foo"
24 }, 22 },
25 "_execute_browser_action": { 23 "_execute_browser_action": {
26 "suggested_key": { 24 "suggested_key": {
27 "mac": "MacCtrl+Shift+F", 25 "mac": "MacCtrl+Shift+F",
28 "default": "Ctrl+Shift+F" 26 "default": "Ctrl+Shift+F"
29 } 27 }
30 } 28 }
31 } 29 }
32 } 30 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/keybinding/basics/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698