CookieSmash
Quickly remove all cookies associate on a site.
Cos'è CookieSmash?
CookieSmash è un'estensione di Chrome sviluppata da Jack Nguyen, e la sua funzione principale è "Quickly remove all cookies associate on a site.".
Scarica il file CRX dell'estensione CookieSmash
Scarica i file di estensione CookieSmash in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | nnnahedhiocibebgbmfiknmjeoflhdfe |
URL Ufficiale | https://chrome.google.com/webstore/detail/cookiesmash/nnnahedhiocibebgbmfiknmjeoflhdfe |
Descrizione | Quickly remove all cookies associate on a site. |
Dimensione del File | 67.73 KB |
Conteggio Installazioni | 149 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2015-06-02 |
Data di Pubblicazione | 2015-06-01 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Jack Nguyen |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } } |