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..d279b004f54b2051c92fda64f41ee4f6a09d779a |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/keybinding/update/mk_v2/manifest.json |
@@ -0,0 +1,19 @@ |
+{ |
+ "name": "A test for making sure media keys that get reassigned don't get reinstated |
+during update.", |
Finnur
2014/10/23 09:09:54
Same question here.
|
+ "version": "2.0", |
+ "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 |
+ } |
+ } |
+} |