Social Sponsored Ads Blocker

Removes sponsored / promoted social ads content on Facebook, Twitter, LinkedIn, and Reddit.

ما هو Social Sponsored Ads Blocker؟

Social Sponsored Ads Blocker هو إضافة Chrome تم تطويرها بواسطة wilbert_abreu، والميزة الرئيسية لها هي "Removes sponsored / promoted social ads content on Facebook, Twitter, LinkedIn, and Reddit.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Social Sponsored Ads Blocker

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

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

                        We're all the product and the user on these social platforms, so this chrome extension aims to dynamically remove all "sponsored" / "promoted" posts / ads from Twitter, Facebook, LinkedIn, and Reddit. Let's take some power back.                    

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

الاسم Social Sponsored Ads Blocker Social Sponsored Ads Blocker
ID cefgndhbngdogmalpnhnidnnlkmbicig
عنوان URL الرسمي https://chromewebstore.google.com/detail/social-sponsored-ads-bloc/cefgndhbngdogmalpnhnidnnlkmbicig
الوصف Removes sponsored / promoted social ads content on Facebook, Twitter, LinkedIn, and Reddit.
حجم الملف 53.16 KB
عدد التثبيتات 330
النسخة الحالية 4.0.10
آخر تحديث 2021-12-05
تاريخ النشر 2019-12-27
تقييم 4.14/5 مجموع تقييمات 7
المطور wilbert_abreu
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Social Sponsored Ads Blocker",
    "description": "Removes sponsored \/ promoted social ads content on Facebook, Twitter, LinkedIn, and Reddit.",
    "version": "4.0.10",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": ""
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "https:\/\/twitter.com\/*",
                "https:\/\/www.reddit.com\/*",
                "https:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "removeSponsoredPosts.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}