CookieSmash

Quickly remove all cookies associate on a site.

Vad är CookieSmash?

CookieSmash är en Chrome-tillägg utvecklad av Jack Nguyen, och dess huvudfunktion är "Quickly remove all cookies associate on a site.".

Ladda ner CookieSmash-förlängningens CRX-fil

Ladda ner CookieSmash-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Click the cookie icon and all cookies for the current site will be deleted and the page will refresh.

This was developed because unlike other cookie removers it did not refresh the page.

I am debating whether to have a popup when the extension deletes everything because as a developer I clear cookies constantly and it would get annoying to have a warning every time. But please let me know what you guys think.

Hopefully this helps someone.                    

Grundläggande Information om Tillägg

Namn CookieSmash CookieSmash
ID nnnahedhiocibebgbmfiknmjeoflhdfe
Officiell webbadress https://chrome.google.com/webstore/detail/cookiesmash/nnnahedhiocibebgbmfiknmjeoflhdfe
Beskrivning Quickly remove all cookies associate on a site.
Filstorlek 67.73 KB
Antal Installationer 149
Aktuell Version 0.1
Senast Uppdaterad 2015-06-02
Publiceringsdatum 2015-06-01
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Jack Nguyen
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CookieSmash",
    "version": "0.1",
    "description": "Quickly remove all cookies associate on a site.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "CookieSmash"
    },
    "permissions": [
        "cookies",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}