CookieSmash

Quickly remove all cookies associate on a site.

¿Qué es CookieSmash?

CookieSmash es una extensión de Chrome desarrollada por Jack Nguyen, y su función principal es "Quickly remove all cookies associate on a site.".

Descargar Archivo CRX de la Extensión CookieSmash

Descarga archivos de extensión CookieSmash en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre CookieSmash CookieSmash
ID nnnahedhiocibebgbmfiknmjeoflhdfe
URL Oficial https://chrome.google.com/webstore/detail/cookiesmash/nnnahedhiocibebgbmfiknmjeoflhdfe
Descripción Quickly remove all cookies associate on a site.
Tamaño del Archivo 67.73 KB
Cantidad de Instalaciones 149
Versión Actual 0.1
Última Actualización 2015-06-02
Fecha de Publicación 2015-06-01
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Jack Nguyen
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}