Index: chrome/test/data/extensions/api_test/keybinding/update/mk_v2/manifest.json |
diff --git a/chrome/test/data/extensions/api_test/keybinding/update/mk_v2/manifest.json b/chrome/test/data/extensions/api_test/keybinding/update/mk_v2/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..810b32479a347a031ea9ed7c8ea30e462fe03f76 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/keybinding/update/mk_v2/manifest.json |
@@ -0,0 +1,18 @@ |
+{ |
+ "name": "A test for checking that user keybings persist after update", |
+ "version": "1.0", |
Mike Wittman
2014/10/22 18:15:37
This should be "version": "2.0" in order to trigge
|
+ "manifest_version": 2, |
+ "background": { |
+ "scripts": ["background.js"] |
+ }, |
+ "permissions": ["activeTab"], |
+ "commands": { |
+ "test_mediakeys_update": { |
+ "suggested_key": { |
+ "default": "MediaPlayPause" |
+ }, |
+ "description": "Test for mediakeys update overwrite", |
+ "global": true |
+ } |
+ } |
+} |