Spotify Controller
Controll your Spotify player via shortcut commands
Spotify Controllerとは何ですか?
Spotify ControllerはElias Wennerlundによって開発されたChromeの拡張機能で、その主な機能は「Controll your Spotify player via shortcut commands」です。
拡張機能のスクリーンショット
Spotify Controller拡張機能のCRXファイルをダウンロード
Spotify Controller拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Are you tired of switching tabs just to change song? With Spotify Controller you can use shortcut commands instead!
Standard commands:
Back button: Alt+Shift+D
Pause/Play: Alt+Shift+F
Next button: Alt+Shift+G
You can also add shortcuts to the Shuffle and Repeat buttons.
If you want to change the commands, go to chrome://extensions/shortcuts 拡張機能の基本情報
| 名前 | |
| ID | jpjbjbgjbicfeifjclhojfelcifcndnh |
| 公式URL | https://chrome.google.com/webstore/detail/spotify-controller/jpjbjbgjbicfeifjclhojfelcifcndnh |
| 説明 | Controll your Spotify player via shortcut commands |
| ファイルサイズ | 15.11 KB |
| インストール数 | 3,000 |
| 現在のバージョン | 1.2.0 |
| 最終更新日 | 2021-06-04 |
| 公開日 | 2020-08-24 |
| 評価 | 3.86/5 合計 7 レビュー |
| 開発者 | Elias Wennerlund |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Spotify Controller",
"description": "Controll your Spotify player via shortcut commands",
"author": "Elias Wennerlund",
"version": "1.2.0",
"permissions": [
"tabs",
"commands"
],
"icons": {
"128": "128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/open.spotify.com\/*"
],
"run_at": "document_idle",
"js": [
"content.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"128": "128.png"
}
},
"commands": {
"prev": {
"suggested_key": {
"default": "Alt+Shift+D"
},
"description": "Back button",
"global": false
},
"play-pause": {
"suggested_key": {
"default": "Alt+Shift+F"
},
"description": "Play\/Pause button",
"global": false
},
"next": {
"suggested_key": {
"default": "Alt+Shift+G"
},
"description": "Next button",
"global": false
},
"shuffle": {
"description": "Shuffle button"
},
"repeat": {
"description": "Repeat button"
}
},
"manifest_version": 2
} | |