Google Music Colorizer
Change the colors of your Google Play Music window.
Google Music Colorizer là gì?
Google Music Colorizer là một tiện ích mở rộng Chrome được phát triển bởi http://bugg.co, và tính năng chính của nó là "Change the colors of your Google Play Music window.".
Ả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 Google Music Colorizer
Tải xuống các tệp mở rộng Google Music Colorizer 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 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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ebkhhlmkbdchllbhfaeemhbdbgljmnlp |
URL Chính Thức | https://chrome.google.com/webstore/detail/google-music-colorizer/ebkhhlmkbdchllbhfaeemhbdbgljmnlp |
Mô tả | Change the colors of your Google Play Music window. |
Kích Thước Tệp | 153 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2018-08-19 |
Ngày Phát Hành | 2018-08-19 |
Nhà Phát Triển | http://bugg.co |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://bugg.co/ |
URL Trang Chính Sách Bảo Mật | https://bugg.co/privacy.php |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |