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.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Google Music Colorizer

قم بتنزيل ملفات الامتداد Google Music Colorizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة سياسة الخصوصية 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"
        }
    }
}