Spotless

Effortless Spotify

ما هو Spotless؟

Spotless هو إضافة Chrome تم تطويرها بواسطة phandd، والميزة الرئيسية لها هي "Effortless Spotify".

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

screenshot

تحميل ملف CRX للإضافة Spotless

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

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

                        Too annoyed by Spotify Ads? Too lazy to navigate to Spotify when you want to change your music? Spotless is here to help you use Spotify effortless!

What makes Spotless different from other Spotify players out there is you can control your Spotify player no matter what device you are using, what tab you are currently on.

Try it out and you will love it!

For source code and issue reporting: https://github.com/phandd/spotless                    

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

الاسم Spotless Spotless
ID allccgoelledmdfenijoodhcfjndddjh
عنوان URL الرسمي https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh
الوصف Effortless Spotify
حجم الملف 421 KB
عدد التثبيتات 8,911
النسخة الحالية 1.3.1
آخر تحديث 2020-03-16
تاريخ النشر 2020-03-15
تقييم 4.54/5 مجموع تقييمات 50
المطور phandd
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/phandd/spotless
عنوان صفحة المساعدة https://github.com/phandd/spotless
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spotless",
    "description": "Effortless Spotify",
    "version": "1.3.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Spotless",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/open.spotify.com\/",
        "https:\/\/spotify.com\/"
    ],
    "icons": {
        "128": "icon-128.png",
        "16": "icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content-script.js"
            ]
        }
    ]
}