Clickbait Killer

Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.

Clickbait Killer란 무엇입니까?

Clickbait Killer은(는) Adam Hey에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Clickbait Killer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Sick and tired of Taboola's "You my like" clickbait article listings on every webpage you visit? I was too, so I decided to knock together a Chrome extension to remove them.

Clickbait Killer attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.

Currently it only removes Taboola and Revcontent "Links from the Web" lists, but please help me expand this extension's arsenal by sending me examples of sites that contain similar clickbait ads.

I'd love to hear feedback whether it's good or bad. This is just a side-project for me, but I'm keen to improve upon it where possible.

UPDATE:
Added 'Zergnet', 'Outbrain' and 'contentad'                    

확장 프로그램 기본 정보

이름 Clickbait Killer Clickbait Killer
ID ekeenfdgilfphjgpaimhingjekdnifhb
공식 URL https://chromewebstore.google.com/detail/clickbait-killer/ekeenfdgilfphjgpaimhingjekdnifhb
설명 Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.
파일 크기 108 KB
설치 횟수 1,465
현재 버전 0.4
최근 업데이트 2019-01-14
출시 날짜 2019-01-13
평점 3.86/5 총 22 개의 평점
개발자 Adam Hey
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://adamhey.blogspot.com/2017/01/clickbait-killer.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clickbait Killer",
    "version": "0.4",
    "manifest_version": 2,
    "description": "Attempts to remove clickbait 'listicles' (from the likes of Taboola, Revcontent etc) from any web page you visit.",
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "*:\/\/www.google.co.za\/*",
        "*:\/\/www.google-analytics.com\/*",
        "*:\/\/www.google.com\/*",
        "*:\/\/mail.google.com\/*"
    ],
    "browser_action": {
        "default_title": "",
        "default_icon": "48.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "clickbaitkiller.css"
            ],
            "js": [
                "clickbaitkiller.js",
                "jquery.min.js"
            ]
        }
    ]
}