Clickbait Killer

Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.

ما هو Clickbait Killer؟

Clickbait Killer هو إضافة Chrome تم تطويرها بواسطة Adam Hey، والميزة الرئيسية لها هي "Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Clickbait Killer

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

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

                        Sick and tired of Taboola's "You my like" clickbait article listings on every webpage you visit? I was too, so I decided to knock together a Chrome extension to remove them.

Clickbait Killer attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.

Currently it only removes Taboola and Revcontent "Links from the Web" lists, but please help me expand this extension's arsenal by sending me examples of sites that contain similar clickbait ads.

I'd love to hear feedback whether it's good or bad. This is just a side-project for me, but I'm keen to improve upon it where possible.

UPDATE:
Added 'Zergnet', 'Outbrain' and 'contentad'                    

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

الاسم Clickbait Killer Clickbait Killer
ID ekeenfdgilfphjgpaimhingjekdnifhb
عنوان URL الرسمي https://chromewebstore.google.com/detail/clickbait-killer/ekeenfdgilfphjgpaimhingjekdnifhb
الوصف Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.
حجم الملف 108 KB
عدد التثبيتات 1,465
النسخة الحالية 0.4
آخر تحديث 2019-01-14
تاريخ النشر 2019-01-13
تقييم 3.86/5 مجموع تقييمات 22
المطور Adam Hey
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://adamhey.blogspot.com/2017/01/clickbait-killer.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clickbait Killer",
    "version": "0.4",
    "manifest_version": 2,
    "description": "Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.",
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "*:\/\/www.google.co.za\/*",
        "*:\/\/www.google-analytics.com\/*",
        "*:\/\/www.google.com\/*",
        "*:\/\/mail.google.com\/*"
    ],
    "browser_action": {
        "default_title": "",
        "default_icon": "48.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "clickbaitkiller.css"
            ],
            "js": [
                "clickbaitkiller.js",
                "jquery.min.js"
            ]
        }
    ]
}