Clickbait Spoiler

Sums up clickbait links in one sentence, through a right-click option.

Clickbait Spoiler क्या है?

Clickbait Spoiler Don Patrick द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sums up clickbait links in one sentence, through a right-click option."।

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

screenshot

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

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

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

                        Avoid clickbait by having this extension sum it up before you even click it.

Adds a right-click menu option to retrieve the punchline of a linked clickbait article without opening the page. The punchline will be shown behind the link's text after a few seconds, along with an estimate of the reading time.

Results will vary but should satisfy your curiosity enough to avoid the clickbait. Works best on typical clickbait headlines, about a.o. why, when, quotes, names, "amazing discoveries", and money. It can not (yet) handle numbered lists or quizzes.

Different from crowdsourced clickbait summarizers, this extension is fully automated and therefore not limited in scope.                    

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

नाम Clickbait Spoiler Clickbait Spoiler
ID fllbkdgcbbgodolfcbdkclipnnifmcfk
आधिकारिक URL https://chromewebstore.google.com/detail/clickbait-spoiler/fllbkdgcbbgodolfcbdkclipnnifmcfk
विवरण Sums up clickbait links in one sentence, through a right-click option.
फ़ाइल का आकार 39.42 KB
स्थापना संख्या 36
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2019-07-11
प्रकाशन तिथि 2019-07-07
डेवलपर Don Patrick
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clickbait Spoiler",
    "version": "1.0.1",
    "description": "Sums up clickbait links in one sentence, through a right-click option.",
    "author": "Patrick Dhondt",
    "developer": {
        "name": "Patrick Dhondt",
        "url": "https:\/\/artistdetective.wordpress.com"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "https:\/\/artistdetective.com\/clickbait\/reader.php"
    ],
    "icons": {
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": "icons\/icon32.png",
        "default_title": "Right-click on a link and select the \"Clickbait Spoiler\" option",
        "default_popup": "popup.htm"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "clickbait.js"
            ]
        }
    ]
}