Clickbait Killer

Clear out your Facebook feed of clickbait by automatically removing entries from sites of your choosing.

Was ist Clickbait Killer?

Clickbait Killer ist eine Chrome-Erweiterung, die von Devon Fritz entwickelt wurde, und ihr Hauptmerkmal ist "Clear out your Facebook feed of clickbait by automatically removing entries from sites of your choosing.".

Erweiterungsscreenshots

screenshot

Clickbait Killer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Clickbait Killer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Sick of looking at clickbait and other nonsense on Facebook? This app automatically filters garbage "content" from your Facebook news feed according to a blacklist you maintain. 

In the future, you will be able to not only filter on website names, but on suspect phrases (e.g. "totally awesome") as well.                    

Grundlegende Informationen zur Erweiterung

Name Clickbait Killer Clickbait Killer
ID bophlajogieadgcmhbphmffneoninfjj
Offizielle URL https://chromewebstore.google.com/detail/clickbait-killer/bophlajogieadgcmhbphmffneoninfjj
Beschreibung Clear out your Facebook feed of clickbait by automatically removing entries from sites of your choosing.
Dateigröße 51.61 KB
Installationsanzahl 230
Aktuelle Version 1.0
Letztes Update 2015-03-23
Veröffentlichungsdatum 2015-03-23
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Devon Fritz
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clickbait Killer",
    "version": "1.0",
    "description": "Clear out your Facebook feed of clickbait by automatically removing entries from sites of your choosing.",
    "icons": {
        "128": "skull-1-icon.png"
    },
    "browser_action": {
        "default_icon": "skull-1-icon.png",
        "default_popup": "gui.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "third-party\/jquery-2.1.1.min.js",
                "common.js",
                "removecb.js"
            ]
        }
    ]
}