One-Click Controls for Google Music
Control Google Music from your address bar.
One-Click Controls for Google Music là gì?
One-Click Controls for Google Music là một tiện ích mở rộng Chrome được phát triển bởi Procrastinating Student, và tính năng chính của nó là "Control Google Music from your address bar.".
Ả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 One-Click Controls for Google Music
Tải xuống các tệp mở rộng One-Click Controls for Google Music 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
Simply click the icon in the address bar to play and pause Google Music, no matter what tab you're in! Upon installation, reload any open Google Music tabs and you'll be all set. Update: - Added options to change default account and auto-shuffle behavior, plus general bug fixes. Get the rewind button here: https://chrome.google.com/webstore/detail/jecmhknpaakaljaahcpjpojlomilfcbk Get the skip button here: https://chrome.google.com/webstore/detail/bbeefcjnjicgkpjbhdnbegckifhooeeo
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | iplcnndnkaahamcojidocbfdagapbcal |
URL Chính Thức | https://chrome.google.com/webstore/detail/one-click-controls-for-go/iplcnndnkaahamcojidocbfdagapbcal |
Mô tả | Control Google Music from your address bar. |
Kích Thước Tệp | 52.2 KB |
Số Lần Cài Đặt | 42 |
Phiên Bản Hiện Tại | 0.0.5 |
Cập Nhật Lần Cuối | 2017-12-06 |
Ngày Phát Hành | 2017-12-06 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Procrastinating Student |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "One-Click Controls for Google Music", "description": "Control Google Music from your address bar.", "version": "0.0.5", "permissions": [ "http:\/\/play.google.com\/music\/", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "images\/no_song_19.png", "38": "images\/no_song_38.png" } }, "content_scripts": [ { "matches": [ "*:\/\/play.google.com\/music*" ], "js": [ "third-party\/jquery-1.12.0.min.js", "content_script.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "images\/no_song_19.png", "images\/no_song_38.png", "images\/play_19.png", "images\/play_38.png", "images\/pause_19.png", "images\/pause_38.png" ], "manifest_version": 2 } |