cookie-jar

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

cookie-jar là gì?

cookie-jar là một tiện ích mở rộng Chrome được phát triển bởi cookiejarextension, và tính năng chính của nó là "Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng cookie-jar

Tải xuống các tệp mở rộng cookie-jar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên cookie-jar cookie-jar
ID ihdcmhoonoabkjahmnbeimimgenmlmjj
URL Chính Thức https://chromewebstore.google.com/detail/cookie-jar/ihdcmhoonoabkjahmnbeimimgenmlmjj
Mô tả Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up
Kích Thước Tệp 359 KB
Số Lần Cài Đặt 71
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2023-08-17
Ngày Phát Hành 2022-06-21
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển cookiejarextension
Email [email protected]
Loại Thanh Toán in_app
URL Trang Chính Sách Bảo Mật https://docs.google.com/document/d/1YCTf_rhP3t7b84CVOawvkRHYhYRlVTzC2BTa0Pen8gM/edit?usp=sharing
Ngôn Ngữ Được Hỗ Trợ 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"
}