Clickbait Spoiler

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

Clickbait Spoiler là gì?

Clickbait Spoiler là một tiện ích mở rộng Chrome được phát triển bởi Don Patrick, và tính năng chính của nó là "Sums up clickbait links in one sentence, through a right-click option.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Clickbait Spoiler

Tải xuống các tệp mở rộng Clickbait Spoiler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Clickbait Spoiler Clickbait Spoiler
ID fllbkdgcbbgodolfcbdkclipnnifmcfk
URL Chính Thức https://chromewebstore.google.com/detail/clickbait-spoiler/fllbkdgcbbgodolfcbdkclipnnifmcfk
Mô tả Sums up clickbait links in one sentence, through a right-click option.
Kích Thước Tệp 39.42 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2019-07-11
Ngày Phát Hành 2019-07-07
Nhà Phát Triển Don Patrick
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}