Easy Play Music Hotkeys
This extensions allows you to set hotkeys for controlling Google Play Music.
Easy Play Music Hotkeys là gì?
Easy Play Music Hotkeys là một tiện ích mở rộng Chrome được phát triển bởi fergaljd, và tính năng chính của nó là "This extensions allows you to set hotkeys for controlling Google Play Music.".
Tải xuống tệp CRX của tiện ích mở rộng Easy Play Music Hotkeys
Tải xuống các tệp mở rộng Easy Play Music Hotkeys 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
This very lightweight extension adds hotkeys to control basic Google Play Music streaming features. Hotkeys are implemented for Play/Pause (Alt-P), Next Track (Alt-Right) and volume controls (Alt-Up/Down). Keyboard shortcuts can be customised on the chrome://extensions page, through the Keyboard Shortcuts link. Install this extension if you are looking for a simple way to control the Google Play Music streaming player with your keyboard. Update: version 0.2 fixes volume controls.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | akfgonaiibepjhbphlhadfiinkkibplg |
URL Chính Thức | https://chrome.google.com/webstore/detail/easy-play-music-hotkeys/akfgonaiibepjhbphlhadfiinkkibplg |
Mô tả | This extensions allows you to set hotkeys for controlling Google Play Music. |
Kích Thước Tệp | 28.7 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2014-01-30 |
Ngày Phát Hành | 2014-01-30 |
Nhà Phát Triển | fergaljd |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Easy Play Music Hotkeys", "description": "This extensions allows you to set hotkeys for controlling Google Play Music.", "version": "0.2", "browser_action": { "default_title": "Google Play Music Hotkeys", "default_icon": "play.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/music\/*" ], "js": [ "controls.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs" ], "commands": { "next_track": { "suggested_key": { "default": "Alt+Right" }, "description": "Skip to next track" }, "play_pause": { "suggested_key": { "default": "Alt+P" }, "description": "Play\/Pause music" }, "volume_up": { "suggested_key": { "default": "Alt+Up" }, "description": "Raise volume" }, "volume_down": { "suggested_key": { "default": "Alt+Down" }, "description": "Lower volume" } } } |