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" |
+ } |
+} |