Self-Destructing Cookies

Delete cookies when browser is closed or once the tab is closed to prevent tracking

Self-Destructing Cookies란 무엇입니까?

Self-Destructing Cookies은(는) joue.quroi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Delete cookies when browser is closed or once the tab is closed to prevent tracking"입니다.

확장 프로그램 스크린샷

screenshot

Self-Destructing Cookies 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension aims to bring "Self-Destructing Cookies" extension written by "Ove" to Chromium browsers. The extension supports two modes to deal with cookies:

1. "session" mode: delete cookies once the current session is closed (all browser windows are closed).
2. "tabs" mode: delete cookies related to the current tab once the tab is closed and there are no other tabs of the same domain.

Example: Let's say you are logged-in into your email account:
In "session" mode, you will be logged-in until all browser tabs are closed.
In "tabs" mode, you will be logged-out once all email tabs are closed. So if you have two email tabs opened and still one tab is open, you are still logged-in. Once the other tab is closed, you will get logged-out

Note: the extension does not support cleaning  "window.localStorage" at this moment. I will work on that later!

To report bugs please use the review section of the FAQs page                    

확장 프로그램 기본 정보

이름 Self-Destructing Cookies Self-Destructing Cookies
ID igdpjhaninpfanncfifdoogibpdidddf
공식 URL https://chromewebstore.google.com/detail/self-destructing-cookies/igdpjhaninpfanncfifdoogibpdidddf
설명 Delete cookies when browser is closed or once the tab is closed to prevent tracking
파일 크기 80.66 KB
설치 횟수 4,760
현재 버전 0.2.0
최근 업데이트 2022-01-03
출시 날짜 2018-01-09
평점 4.23/5 총 13 개의 평점
개발자 joue.quroi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://add0n.com/self-destructing-cookies.html
도움말 페이지 URL http://add0n.com/self-destructing-cookies.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.2.0",
    "name": "Self-Destructing Cookies",
    "description": "Delete cookies when browser is closed or once the tab is closed to prevent tracking",
    "permissions": [
        "storage",
        "cookies",
        "contextMenus",
        "notifications"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "action": [],
    "background": {
        "service_worker": "worker.js"
    },
    "options_ui": {
        "page": "data\/options\/index.html",
        "open_in_tab": true
    },
    "homepage_url": "https:\/\/add0n.com\/self-destructing-cookies.html",
    "commands": {
        "_execute_action": {
            "description": "Press the action button"
        }
    }
}