Play Music: Tools
This extension provides tools to interface with Google Play Music in the web browser.
Play Music: Toolsคืออะไร?
Play Music: Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lecklider.6 และคุณลักษณะหลักของมันคือ "This extension provides tools to interface with Google Play Music in the web browser."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Play Music: Tools
ดาวน์โหลดไฟล์ส่วนขยาย Play Music: Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Quickly and easily add music to "My Library" through keyboard shortcut or by the extension popup. Current Command(s): -Add to Library: Default: Ctrl + Shift + L License (MIT): Copyright (c) 2017 Daniel Lecklider under the MIT license. Credits: Icon made by Freepik & Vectors Market from www.flaticon.com
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | pjdmlkmcedbbbcbibaedjhbmcnnakohb |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/pjdmlkmcedbbbcbibaedjhbmcnnakohb |
คำอธิบาย | This extension provides tools to interface with Google Play Music in the web browser. |
ขนาดไฟล์ | 101 KB |
จำนวนการติดตั้ง | 106 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2017-11-03 |
วันที่เผยแพร่ | 2017-11-03 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | lecklider.6 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Play Music: Tools", "description": "This extension provides tools to interface with Google Play Music in the web browser.", "version": "1.0", "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/*" ], "js": [ "js\/content.js" ] } ], "browser_action": { "default_title": "Play Music: Tools", "default_popup": "html\/popup.html", "default_icon": "img\/icon38.png" }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "tabs" ], "commands": { "add_to_library": { "suggested_key": { "default": "Ctrl+Shift+L" }, "global": true, "description": "Add current song to 'My Library'" } } } |