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란 무엇입니까?

cookie-jar은(는) cookiejarextension에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up"입니다.

확장 프로그램 스크린샷

cookie-jar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 cookie-jar cookie-jar
ID ihdcmhoonoabkjahmnbeimimgenmlmjj
공식 URL https://chromewebstore.google.com/detail/cookie-jar/ihdcmhoonoabkjahmnbeimimgenmlmjj
설명 Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up
파일 크기 359 KB
설치 횟수 71
현재 버전 1.0.4
최근 업데이트 2023-08-17
출시 날짜 2022-06-21
평점 4.33/5 총 3 개의 평점
개발자 cookiejarextension
이메일 [email protected]
결제 유형 in_app
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/1YCTf_rhP3t7b84CVOawvkRHYhYRlVTzC2BTa0Pen8gM/edit?usp=sharing
지원되는 언어 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"
}