Chromium Code Reviews| Index: chrome/common/extensions/docs/examples/api/mediaKeysCommand/manifest.json |
| diff --git a/chrome/common/extensions/docs/examples/api/mediaKeysCommand/manifest.json b/chrome/common/extensions/docs/examples/api/mediaKeysCommand/manifest.json |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8dcc368c2aab3c8dc23076211b04764c508cb246 |
| --- /dev/null |
| +++ b/chrome/common/extensions/docs/examples/api/mediaKeysCommand/manifest.json |
| @@ -0,0 +1,39 @@ |
| +{ |
| + "name": "MediaKeys", |
| + "description": "Sample Extension Commands extension For Media Keys", |
| + "version": "1.0", |
| + "manifest_version": 2, |
| + "background": { |
| + "scripts": ["background.js"], |
| + "persistent": false |
| + }, |
| + "browser_action": { |
| + "default_popup": "browser_action.html" |
| + }, |
| + "commands": { |
| + "next-track": { |
| + "suggested_key": { |
| + "default": "MediaNextTrack" |
| + }, |
| + "description": "Media next track" |
| + }, |
| + "prev": { |
| + "suggested_key": { |
| + "default": "MediaPrevTrack" |
| + }, |
| + "description": "Media previous track" |
| + }, |
| + "play-pause": { |
| + "suggested_key": { |
| + "default": "MediaPlayPause" |
| + }, |
| + "description": "Media play/pause" |
| + }, |
| + "stop": { |
| + "suggested_key": { |
| + "default": "MediaStop" |
| + }, |
| + "description": "Media stop" |
| + } |
| + } |
| +} |
|
Finnur
2013/08/28 14:15:16
I don't think this sample is needed, but if so, th
zhchbin
2013/08/29 06:20:14
Removal of example: Done.
Doc commands API doc: I
Finnur
2013/08/29 11:20:52
Fine.
|