Clickbait Blocker

Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists.

Clickbait Blocker क्या है?

Clickbait Blocker [email protected] द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists."।

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

crx प्रारूप में Clickbait Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Let's face it, there is a lot of clickbait out there. There are many site's whose entire existence is to create inflamed article titles so that you click on them. Sometimes, it is easy to know that there are to be ignored, sometimes it is more difficult.

Clickbait Blocker is a free and opensource Chrome extension that is built to allow you to be warned when hitting a known Clickbait site. This can be ignored, or added to an allowed list of sites you trust. More features on the way. 

The list of sites is free and available on GitHub— additions or removals are welcome on the GitHub repository: 

https://github.com/clickbait/clickbait-blocker-sites

The full source code can be seen also on GitHub: 

https://github.com/clickbait/clickbait-blocker                    

एक्सटेंशन की मूल जानकारी

नाम Clickbait Blocker Clickbait Blocker
ID bdaceojfpjpfnilmonmgohmpjokabjec
आधिकारिक URL https://chrome.google.com/webstore/detail/clickbait-blocker/bdaceojfpjpfnilmonmgohmpjokabjec
विवरण Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists.
फ़ाइल का आकार 27.49 KB
स्थापना संख्या 114
वर्तमान संस्करण 0.0.3
अंतिम अपडेट 2016-11-17
प्रकाशन तिथि 2016-11-17
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/clickbait/clickbait-blocker
सहायता पृष्ठ URL https://github.com/clickbait/clickbait-blocker/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clickbait Blocker",
    "description": "Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists.",
    "version": "0.0.3",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_scripts.bundle.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "img\/logo_16.png",
        "48": "img\/logo_48.png",
        "128": "img\/logo_128.png"
    },
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true,
        "open_in_tab": true
    }
}