cookie-jar

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

Co je cookie-jar?

cookie-jar je rozšíření Chrome vyvinuté cookiejarextension, a jeho hlavní funkcí je „Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up“.

Snímky obrazovky rozšíření

Stáhnout soubor CRX rozšíření cookie-jar

Stáhněte si soubory rozšíření cookie-jar ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název cookie-jar cookie-jar
ID ihdcmhoonoabkjahmnbeimimgenmlmjj
Oficiální URL https://chromewebstore.google.com/detail/cookie-jar/ihdcmhoonoabkjahmnbeimimgenmlmjj
Popis Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up
Velikost souboru 359 KB
Počet instalací 71
Aktuální Verze 1.0.4
Poslední Aktualizace 2023-08-17
Datum Vydání 2022-06-21
Hodnocení 4.33/5 Celkem 3 Hodnocení
Vývojář cookiejarextension
E-mail [email protected]
Typ Platby in_app
URL Stránky Zásad Ochrany Soukromí https://docs.google.com/document/d/1YCTf_rhP3t7b84CVOawvkRHYhYRlVTzC2BTa0Pen8gM/edit?usp=sharing
Podporované Jazyky 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"
}