Google Music Visualizer

An audio visualizer for Google Play Music.

ما هو Google Music Visualizer؟

Google Music Visualizer هو إضافة Chrome تم تطويرها بواسطة Zhiwen Huang، والميزة الرئيسية لها هي "An audio visualizer for Google Play Music.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        An audio visualizer for Google Music! Being able to see the movement of your music makes it a lot more fun to listen to.

This app features 6 color themes.

To use just install, go to music.google.com, and pick a song to play! 

If you have any suggestions or feedback please send me an email! I'm currently actively working on this app and would love to make it better.

Source code: https://github.com/zhiwenh/google-music-visualizer                    

معلومات أساسية عن التمديد

الاسم Google Music Visualizer Google Music Visualizer
ID johpjbomefnepibfaklpjjcidhpabdnf
عنوان URL الرسمي https://chrome.google.com/webstore/detail/google-music-visualizer/johpjbomefnepibfaklpjjcidhpabdnf
الوصف An audio visualizer for Google Play Music.
حجم الملف 182 KB
عدد التثبيتات 837
النسخة الحالية 1.2.9
آخر تحديث 2019-06-03
تاريخ النشر 2019-06-03
تقييم 4.46/5 مجموع تقييمات 13
المطور Zhiwen Huang
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Music Visualizer",
    "description": "An audio visualizer for Google Play Music.",
    "version": "1.2.9",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Google Music Visualizer"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/music\/*"
            ],
            "js": [
                "scripts\/libraries\/jquery-3.0.0.min.js",
                "scripts\/libraries\/jquery-ui.min.js",
                "scripts\/libraries\/d3.min.js",
                "scripts\/visualizer.js",
                "scripts\/content.js"
            ]
        }
    ]
}