Clickbait Killer

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

Clickbait Killer क्या है?

Clickbait Killer Adam Hey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Clickbait Killer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}