Spotify adblocker

Listen to your favorite music without any ads with spotify adblocker

ما هو Spotify adblocker؟

Spotify adblocker هو إضافة Chrome تم تطويرها بواسطة Prime Extensions، والميزة الرئيسية لها هي "Listen to your favorite music without any ads with spotify adblocker".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Enhance your Spotify experience with Spotify AdBlocker ! This Chrome extension effortlessly blocks annoying audio, as well as pesky pop-ups, ensuring uninterrupted music streaming. No more interruptions—just pure, ad-free music bliss. Upgrade your Spotify journey today                    

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

الاسم Spotify adblocker Spotify adblocker
ID jjkmjkmaaaplnncabkhoeonloebnmjgd
عنوان URL الرسمي https://chrome.google.com/webstore/detail/spotify-adblocker/jjkmjkmaaaplnncabkhoeonloebnmjgd
الوصف Listen to your favorite music without any ads with spotify adblocker
حجم الملف 123 KB
عدد التثبيتات 31
النسخة الحالية 1.0.0
آخر تحديث 2023-09-28
تاريخ النشر 2023-09-28
تقييم 5.00/5 مجموع تقييمات 2
المطور Prime Extensions
البريد الإلكتروني [email protected]
موقع الإضافة https://www.spotifyadblocker.co/
عنوان صفحة المساعدة https://www.spotifyadblocker.co/support
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify adblocker",
    "description": "Listen to your favorite music without any ads with spotify adblocker",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "spotify16x16.png",
        "48": "spotify48x48.png",
        "128": "spotify128x128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "spotify adblocker",
        "default_icon": "spotify16x16.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "contentScriptSpotify.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScriptSpotify.js",
                "adsSweetalertSpotify.js",
                "adsAdsRemoveSpotify.js",
                "adswsHooksSpotify.js"
            ],
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ]
        }
    ]
}