Clickbait Killer

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

Cos'è Clickbait Killer?

Clickbait Killer è un'estensione di Chrome sviluppata da Devon Fritz, e la sua funzione principale è "Clear out your Facebook feed of clickbait by automatically removing entries from sites of your choosing.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Clickbait Killer

Scarica i file di estensione Clickbait Killer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Clickbait Killer Clickbait Killer
ID bophlajogieadgcmhbphmffneoninfjj
URL Ufficiale https://chromewebstore.google.com/detail/clickbait-killer/bophlajogieadgcmhbphmffneoninfjj
Descrizione Clear out your Facebook feed of clickbait by automatically removing entries from sites of your choosing.
Dimensione del File 51.61 KB
Conteggio Installazioni 230
Versione Corrente 1.0
Ultimo Aggiornamento 2015-03-23
Data di Pubblicazione 2015-03-23
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Devon Fritz
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}