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
Eメール [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"
        }
    }
}