Spotify Controller
Control Spotify Web Player from any window/tab.
Spotify Controllerとは何ですか?
Spotify ControllerはJoe Warrenによって開発されたChromeの拡張機能で、その主な機能は「Control Spotify Web Player from any window/tab.」です。
Spotify Controller拡張機能のCRXファイルをダウンロード
Spotify Controller拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Control the web Spotify Player(https://play.spotify.com) from any Chrome window/tab. Play/pause: Ctrl + Shift + P Next song: Ctrl + Shift + N Previous song: Ctrl + Shift + B
拡張機能の基本情報
名前 | |
ID | celedfadbfmnehggekllhcbpgokjkknf |
公式URL | https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf |
説明 | Control Spotify Web Player from any window/tab. |
ファイルサイズ | 167 KB |
インストール数 | 100 |
現在のバージョン | 1.0 |
最終更新日 | 2014-02-19 |
公開日 | 2014-02-19 |
評価 | 2.33/5 合計 3 レビュー |
開発者 | Joe Warren |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify Controller", "description": "Control Spotify Web Player from any window\/tab.", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "commands": { "toggle-pause": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "MacCtrl+Shift+P" }, "description": "Toggle pause and play" }, "toggle-next": { "suggested_key": { "default": "Ctrl+Shift+N", "mac": "MacCtrl+Shift+N" }, "description": "Play the next song" }, "toggle-previous": { "suggested_key": { "default": "Ctrl+Shift+B", "mac": "MacCtrl+Shift+B" }, "description": "Play the previous song" } } } |