Spotify Web Visualizer

Full screen visualizer for Spotify Web

ما هو Spotify Web Visualizer؟

Spotify Web Visualizer هو إضافة Chrome تم تطويرها بواسطة http://nikodraca.com، والميزة الرئيسية لها هي "Full screen visualizer for Spotify Web".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Spotify Web Visualizer

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

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

                        Allows you to enter a full screen visualizer while listening to Spotify on the web. 

Perfect for displaying artwork while listening to music on the web.

Change Log:

v0.2.1 (2020/04/01)
- Fixed MutationObserver bug
- Implemented pre-loading for images
- Fixed audio control                    

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

الاسم Spotify Web Visualizer Spotify Web Visualizer
ID cioamabllelecbeliakinadcmlilkigp
عنوان URL الرسمي https://chrome.google.com/webstore/detail/spotify-web-visualizer/cioamabllelecbeliakinadcmlilkigp
الوصف Full screen visualizer for Spotify Web
حجم الملف 120 KB
عدد التثبيتات 3,000
النسخة الحالية 0.2.1
آخر تحديث 2020-05-22
تاريخ النشر 2020-05-22
تقييم 2.28/5 مجموع تقييمات 18
المطور http://nikodraca.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.nikodraca.com
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Web Visualizer",
    "version": "0.2.1",
    "manifest_version": 2,
    "description": "Full screen visualizer for Spotify Web",
    "homepage_url": "http:\/\/www.nikodraca.com\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "https:\/\/open.spotify.com\/*",
        "debugger"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js",
                "js\/jquery\/jquery.min.js"
            ]
        }
    ]
}