Hotkeys for vk.com
Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard.
What is Hotkeys for vk.com?
Hotkeys for vk.com is a Chrome extension developed by https://sites.google.com/site/ddenex, and its main feature is "Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard.".
Extension Screenshots
Download Hotkeys for vk.com Extension CRX File
Download Hotkeys for vk.com extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard.
Extension Basic Information
Name | Hotkeys for vk.com |
ID | amaobfendgcolppeioeageanmillkmkc |
Official URL | https://chromewebstore.google.com/detail/hotkeys-for-vkcom/amaobfendgcolppeioeageanmillkmkc |
Description | Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard. |
File Size | 102 KB |
Installation Count | 1,789 |
Current Version | 1.5.2.555 |
Last Updated | 2018-10-22 |
Publish Date | 2018-10-21 |
Rating | 4.24/5 Total 90 Ratings |
Developer | https://sites.google.com/site/ddenex |
[email protected] | |
Payment Type | free |
Extension Website | https://vk.com/vk_media_keys |
Help Page URL | https://vk.com/vk_media_keys |
Supported Languages | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.5.2.555", "short_name": "VK Media Keys", "homepage_url": "http:\/\/vk.com\/vk_media_keys", "content_security_policy": "script-src 'self' https:\/\/stats.g.doubleclick.net\/dc.js https:\/\/ssl.google-analytics.com; object-src 'self'", "name": "__MSG_application_title__", "description": "__MSG_application_description__", "default_locale": "en", "icons": { "16": "icons\/logo16.png", "48": "icons\/logo48.png", "128": "icons\/logo128.png" }, "permissions": [ "notifications", "storage", "*:\/\/*.vk.com\/", "*:\/\/*.lst.fm\/" ], "web_accessible_resources": [ "icons\/logo174.png" ], "browser_action": { "default_icon": { "19": "icons\/logo19.png", "38": "icons\/logo38.png" } }, "commands": { "cmd-play-pause": { "global": true, "suggested_key": { "default": "MediaPlayPause" }, "description": "__MSG_play_pause_description__" }, "cmd-play-next": { "global": true, "suggested_key": { "default": "MediaNextTrack" }, "description": "__MSG_play_next_description__" }, "cmd-play-prev": { "global": true, "suggested_key": { "default": "MediaPrevTrack" }, "description": "__MSG_play_prev_description__" } }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*.vk.com\/*" ], "js": [ "content_script.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.vk.com\/*" ] }, "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": true } } |