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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Delete cookies when browser is closed or once the tab is closed to prevent tracking"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Self-Destructing Cookies एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    }
}