Hotkeys for vk.com
Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard.
Hotkeys for vk.comとは何ですか?
Hotkeys for vk.comはhttps://sites.google.com/site/ddenexによって開発されたChromeの拡張機能で、その主な機能は「Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard.」です。
拡張機能のスクリーンショット
Hotkeys for vk.com拡張機能のCRXファイルをダウンロード
Hotkeys for vk.com拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard. 拡張機能の基本情報
| 名前 | |
| ID | amaobfendgcolppeioeageanmillkmkc |
| 公式URL | https://chromewebstore.google.com/detail/hotkeys-for-vkcom/amaobfendgcolppeioeageanmillkmkc |
| 説明 | Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard. |
| ファイルサイズ | 102 KB |
| インストール数 | 1,789 |
| 現在のバージョン | 1.5.2.555 |
| 最終更新日 | 2018-10-22 |
| 公開日 | 2018-10-21 |
| 評価 | 4.24/5 合計 90 レビュー |
| 開発者 | https://sites.google.com/site/ddenex |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://vk.com/vk_media_keys |
| ヘルプページのURL | https://vk.com/vk_media_keys |
| 対応言語 | 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
}
} | |