Cookie Fucker

Removes all cookie warnings. Light and open-sourced.

Co to jest Cookie Fucker?

Cookie Fucker to rozszerzenie Chrome opracowane przez siffash, a jego główną funkcją jest „Removes all cookie warnings. Light and open-sourced.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Cookie Fucker

Pobierz pliki rozszerzeń Cookie Fucker 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

                        Tired of cookie warnings? This extension removes all of them! No ads, no bullshit, just plain open-source code:
https://github.com/siffash/cookie-fucker

This is the only extension that does not contain huge databases with tons of rules specific for each website. Instead of that the light yet very intelligent algorithm does quick analysis of a webpage and automatically removes all annoying cookie notifications.

Want to know what all the fuss is about and the reason site owners add these warnings? Learn more about General Data Protection Regulation (GDPR):
https://en.wikipedia.org/wiki/General_Data_Protection_Regulation                    

Podstawowe informacje o rozszerzeniu

Nazwa Cookie Fucker Cookie Fucker
ID elklahjjpedpdjkojcehflijmfeeejhc
Oficjalny URL https://chromewebstore.google.com/detail/cookie-fucker/elklahjjpedpdjkojcehflijmfeeejhc
Opis Removes all cookie warnings. Light and open-sourced.
Rozmiar pliku 28.03 KB
Liczba instalacji 941
Aktualna Wersja 2.0.1
Ostatnia Aktualizacja 2019-06-20
Data Publikacji 2019-06-20
Ocena 3.97/5 Łącznie 33 Oceny
Deweloper siffash
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cookie Fucker",
    "version": "2.0.1",
    "description": "Removes all cookie warnings. Light and open-sourced.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/16.png",
            "32": "img\/32.png",
            "48": "img\/48.png",
            "128": "img\/128.png"
        }
    },
    "icons": {
        "16": "img\/16.png",
        "32": "img\/32.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "manifest_version": 2
}