Webplayer Hotkeys - Shortcuts for web players
Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.
Webplayer Hotkeys - Shortcuts for web playersとは何ですか?
Webplayer Hotkeys - Shortcuts for web playersはGabriel Duarteによって開発されたChromeの拡張機能で、その主な機能は「Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.」です。
拡張機能のスクリーンショット
Webplayer Hotkeys - Shortcuts for web players拡張機能のCRXファイルをダウンロード
Webplayer Hotkeys - Shortcuts for web players拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A Chrome extension that assigns hotkeys and shortcuts to play/pause, and to switch music (next and previous). If no player is currently opened, it fires up Spotify. If there is more player tabs than one, it follows this order of priority: Spotify > Deezer > SoundCloud > Youtube Works with: • Spotify • Deezer • SoundCloud • Youtube
拡張機能の基本情報
名前 | Webplayer Hotkeys - Shortcuts for web players |
ID | ikmkicnmahfdilneilgibeppbnolgkaf |
公式URL | https://chromewebstore.google.com/detail/webplayer-hotkeys-shortcu/ikmkicnmahfdilneilgibeppbnolgkaf |
説明 | Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music. |
ファイルサイズ | 52.04 KB |
インストール数 | 887 |
現在のバージョン | 1.3.2 |
最終更新日 | 2020-01-02 |
公開日 | 2020-01-02 |
評価 | 4.24/5 合計 17 レビュー |
開発者 | Gabriel Duarte |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/GabrielDuarteM/Webplayer-Hotkeys |
ヘルプページのURL | https://github.com/GabrielDuarteM/Webplayer-Hotkeys/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Webplayer Hotkeys - Shortcuts for web players", "version": "1.3.2", "description": "Assign hotkeys to play\/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.", "icons": { "128": "icon.png" }, "author": "Gabriel Duarte", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "prev": { "description": "Previous music", "suggested_key": "Alt+Shift+Comma", "global": true }, "play": { "description": "Play\/pause", "suggested_key": "Alt+Shift+P", "global": true }, "next": { "description": "Next music", "suggested_key": "Alt+Shift+Period", "global": true } }, "homepage_url": "https:\/\/github.com\/GabrielQDuarte\/Webplayer-Hotkeys\/tree\/master", "incognito": "split", "permissions": [ "*:\/\/*.spotify.com\/*", "*:\/\/*.youtube.com\/*", "*:\/\/soundcloud.com\/*", "*:\/\/*.deezer.com\/*", "tabs" ] } |