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

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

Issue 10834106: Implement Keybinding for script badges. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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/script_badge/manifest.json
===================================================================
--- chrome/test/data/extensions/api_test/keybinding/script_badge/manifest.json (revision 0)
+++ chrome/test/data/extensions/api_test/keybinding/script_badge/manifest.json (revision 0)
@@ -0,0 +1,19 @@
+{
+ "name": "A extension command test for script badges",
+ "version": "1.0",
+ "manifest_version": 2,
+ "background": {
+ "scripts": ["background.js"]
+ },
+ "commands": {
+ "_execute_script_badge": {
+ "suggested_key": "Ctrl+Shift+F"
+ }
+ },
+ "permissions": [
+ "tabs", "http://*/*", "experimental", "commands"
+ ],
+ "script_badge": {
+ "default_popup": "popup.html"
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698