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

Unified Diff: chrome/test/data/extensions/api_test/keybinding/overwrite_bookmark_shortcut/manifest.json

Issue 143493005: Allow extensions to remove and override the bookmark shortcut key (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update mac test fix Created 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/keybinding/overwrite_bookmark_shortcut/manifest.json
diff --git a/chrome/test/data/extensions/api_test/keybinding/overwrite_bookmark_shortcut/manifest.json b/chrome/test/data/extensions/api_test/keybinding/overwrite_bookmark_shortcut/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..fd9f0cac9ba102b7307c45c0504cd2a33b2542a0
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/keybinding/overwrite_bookmark_shortcut/manifest.json
@@ -0,0 +1,20 @@
+{
+ "name": "An extension that overwrites permitted system keybindings",
+ "version": "1.0",
+ "manifest_version": 2,
+ "background": {
+ "scripts": ["background.js"]
+ },
+ "permissions": ["activeTab"],
+ "chrome_settings_overrides": {
+ "bookmarks_ui": {
+ "remove_bookmark_shortcut": true
+ }
+ },
+ "commands": {
+ "green": {
+ "suggested_key": "Ctrl+D",
+ "description": "Make the page green"
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698