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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}