Clickbait Killer

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

Co to jest Clickbait Killer?

Clickbait Killer to rozszerzenie Chrome opracowane przez Devon Fritz, a jego główną funkcją jest „Clear out your Facebook feed of clickbait by automatically removing entries from sites of your choosing.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Clickbait Killer

Pobierz pliki rozszerzeń Clickbait Killer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Clickbait Killer Clickbait Killer
ID bophlajogieadgcmhbphmffneoninfjj
Oficjalny URL https://chromewebstore.google.com/detail/clickbait-killer/bophlajogieadgcmhbphmffneoninfjj
Opis Clear out your Facebook feed of clickbait by automatically removing entries from sites of your choosing.
Rozmiar pliku 51.61 KB
Liczba instalacji 230
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2015-03-23
Data Publikacji 2015-03-23
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Devon Fritz
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}