Clickbait Spoiler

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

什麼是Clickbait Spoiler?

Clickbait Spoiler是由Don Patrick開發的Chrome擴展程式,該擴展的主要功能是“Sums up clickbait links in one sentence, through a right-click option.”。

擴展截圖

screenshot

下載Clickbait Spoiler擴展crx文件

下載Clickbait Spoiler擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}