Google Music Colorizer

Change the colors of your Google Play Music window.

什么是Google Music Colorizer?

Google Music Colorizer是由http://bugg.co开发的Chrome扩展程序,该扩展的主要功能是“Change the colors of your Google Play Music window.”。

扩展截图

screenshot
screenshot
screenshot

下载Google Music Colorizer扩展crx文件

下载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!                    

扩展基本信息

名称 Google Music Colorizer Google Music Colorizer
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"
        }
    }
}