Google Music Colorizer

Change the colors of your Google Play Music window.

O que é Google Music Colorizer?

Google Music Colorizer é uma extensão do Chrome desenvolvida por http://bugg.co, e sua principal característica é "Change the colors of your Google Play Music window.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Google Music Colorizer

Baixe arquivos de extensão Google Music Colorizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Google Music Colorizer Google Music Colorizer
ID ebkhhlmkbdchllbhfaeemhbdbgljmnlp
URL Oficial https://chrome.google.com/webstore/detail/google-music-colorizer/ebkhhlmkbdchllbhfaeemhbdbgljmnlp
Descrição Change the colors of your Google Play Music window.
Tamanho do Arquivo 153 KB
Contagem de Instalações 34
Versão Atual 1.0.1
Última Atualização 2018-08-19
Data de Publicação 2018-08-19
Desenvolvedor http://bugg.co
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://bugg.co/
URL da Página de Política de Privacidade https://bugg.co/privacy.php
Idiomas Suportados 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"
        }
    }
}