Google Music Colorizer
Change the colors of your Google Play Music window.
Google Music Colorizerคืออะไร?
Google Music Colorizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://bugg.co และคุณลักษณะหลักของมันคือ "Change the colors of your Google Play Music window."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Music Colorizer
ดาวน์โหลดไฟล์ส่วนขยาย Google Music Colorizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you to: * Enable Dark mode on Google Play Music for less strain on the eyes * Change your Google Play Music accent color to whatever you'd like to make it how you want it. * Enable "Rainbow mode" for animated accent colors!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ebkhhlmkbdchllbhfaeemhbdbgljmnlp |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/google-music-colorizer/ebkhhlmkbdchllbhfaeemhbdbgljmnlp |
คำอธิบาย | Change the colors of your Google Play Music window. |
ขนาดไฟล์ | 153 KB |
จำนวนการติดตั้ง | 34 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2018-08-19 |
วันที่เผยแพร่ | 2018-08-19 |
ผู้พัฒนา | http://bugg.co |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://bugg.co/ |
URL หน้านโยบายความเป็นส่วนตัว | https://bugg.co/privacy.php |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Music Colorizer", "version": "1.0.1", "description": "Change the colors of your Google Play Music window.", "author": "bugfroggy", "homepage_url": "https:\/\/bugg.co\/", "offline_enabled": true, "icons": { "16": "img\/logo-16.png", "19": "img\/logo-19.png", "48": "img\/logo-48.png", "64": "img\/logo-64.png", "128": "img\/logo-128.png" }, "short_name": "GM Color", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "declarativeContent", "activeTab", "https:\/\/play.google.com\/music\/listen" ], "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/music\/listen*" ], "js": [ "chroma.min.js", "target_data.js", "init.js" ] } ], "page_action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "img\/logo-16.png", "19": "img\/logo-19.png", "48": "img\/logo-48.png", "64": "img\/logo-64.png", "128": "img\/logo-128.png" } } } |