One-Click Controls for Google Music
Control Google Music from your address bar.
One-Click Controls for Google Musicคืออะไร?
One-Click Controls for Google Music เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Procrastinating Student และคุณลักษณะหลักของมันคือ "Control Google Music from your address bar."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย One-Click Controls for Google Music
ดาวน์โหลดไฟล์ส่วนขยาย One-Click Controls for Google Music ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | iplcnndnkaahamcojidocbfdagapbcal |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/one-click-controls-for-go/iplcnndnkaahamcojidocbfdagapbcal |
คำอธิบาย | Control Google Music from your address bar. |
ขนาดไฟล์ | 52.2 KB |
จำนวนการติดตั้ง | 42 |
เวอร์ชันปัจจุบัน | 0.0.5 |
อัปเดตครั้งล่าสุด | 2017-12-06 |
วันที่เผยแพร่ | 2017-12-06 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Procrastinating Student |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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 } |