Spotify Controller
Controll your Spotify player via shortcut commands
Spotify Controller là gì?
Spotify Controller là một tiện ích mở rộng Chrome được phát triển bởi Elias Wennerlund, và tính năng chính của nó là "Controll your Spotify player via shortcut commands".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Spotify Controller
Tải xuống các tệp mở rộng Spotify Controller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jpjbjbgjbicfeifjclhojfelcifcndnh |
URL Chính Thức | https://chrome.google.com/webstore/detail/spotify-controller/jpjbjbgjbicfeifjclhojfelcifcndnh |
Mô tả | Controll your Spotify player via shortcut commands |
Kích Thước Tệp | 15.11 KB |
Số Lần Cài Đặt | 3,000 |
Phiên Bản Hiện Tại | 1.2.0 |
Cập Nhật Lần Cuối | 2021-06-04 |
Ngày Phát Hành | 2020-08-24 |
Đánh Giá | 3.86/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Elias Wennerlund |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |