Cookie Fucker

Removes all cookie warnings. Light and open-sourced.

O que é Cookie Fucker?

Cookie Fucker é uma extensão do Chrome desenvolvida por siffash, e sua principal característica é "Removes all cookie warnings. Light and open-sourced.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Cookie Fucker

Baixe arquivos de extensão Cookie Fucker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Cookie Fucker Cookie Fucker
ID elklahjjpedpdjkojcehflijmfeeejhc
URL Oficial https://chromewebstore.google.com/detail/cookie-fucker/elklahjjpedpdjkojcehflijmfeeejhc
Descrição Removes all cookie warnings. Light and open-sourced.
Tamanho do Arquivo 28.03 KB
Contagem de Instalações 941
Versão Atual 2.0.1
Última Atualização 2019-06-20
Data de Publicação 2019-06-20
Classificação 3.97/5 Total de 33 Avaliações
Desenvolvedor siffash
Tipo de Pagamento free
Idiomas Suportados 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
}