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 |
| 官方網址 | 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 |
| 電子郵箱 | [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
} | |