Cookie Fucker

Removes all cookie warnings. Light and open-sourced.

Qu'est-ce que Cookie Fucker ?

Cookie Fucker est une extension Chrome développée par siffash, et sa fonction principale est "Removes all cookie warnings. Light and open-sourced.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Cookie Fucker

Téléchargez les fichiers d'extension Cookie Fucker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Cookie Fucker Cookie Fucker
ID elklahjjpedpdjkojcehflijmfeeejhc
URL Officiel https://chromewebstore.google.com/detail/cookie-fucker/elklahjjpedpdjkojcehflijmfeeejhc
Description Removes all cookie warnings. Light and open-sourced.
Taille du Fichier 28.03 KB
Nombre d'Installations 941
Version Actuelle 2.0.1
Dernière Mise à Jour 2019-06-20
Date de Publication 2019-06-20
Évaluation 3.97/5 Total 33 Évaluations
Développeur siffash
Type de Paiement free
Langues Prises en Charge 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
}