cookie-jar

Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up

Cos'è cookie-jar?

cookie-jar è un'estensione di Chrome sviluppata da cookiejarextension, e la sua funzione principale è "Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione cookie-jar

Scarica i file di estensione cookie-jar 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

                        CookieJar, its a chrome extension which accepts/denies non-essential cookies on what user desires automatically on all the websites. 

It helps users to automatically decline/accept cookies without any manual interaction, this makes the user skip those annoying popups on websites and have a better browsing experience.

Cookiejar also allows the user to delete any or all the cookies stored on the browser.                    

Informazioni di Base sull'Estensione

Nome cookie-jar cookie-jar
ID ihdcmhoonoabkjahmnbeimimgenmlmjj
URL Ufficiale https://chromewebstore.google.com/detail/cookie-jar/ihdcmhoonoabkjahmnbeimimgenmlmjj
Descrizione Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up
Dimensione del File 359 KB
Conteggio Installazioni 71
Versione Corrente 1.0.4
Ultimo Aggiornamento 2023-08-17
Data di Pubblicazione 2022-06-21
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore cookiejarextension
Email [email protected]
Tipo di Pagamento in_app
URL della Pagina della Politica sulla Privacy https://docs.google.com/document/d/1YCTf_rhP3t7b84CVOawvkRHYhYRlVTzC2BTa0Pen8gM/edit?usp=sharing
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "cookie-jar",
    "background": {
        "service_worker": "serviceWorker.js",
        "matches": [
            ""
        ]
    },
    "permissions": [
        "tabs",
        "cookies",
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon16_16.png",
            "24": "icons\/icon24_24.png",
            "32": "icons\/icon32_32.png",
            "128": "icons\/icon128_128.png"
        },
        "default_title": "CookieJar",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/contentscript.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "icons\/icon16_16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128_128.png"
    },
    "version": "1.0.4",
    "description": "Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up",
    "author": "Sirage-T"
}