CookieSmash
Quickly remove all cookies associate on a site.
Wat is CookieSmash?
CookieSmash is een Chrome-extensie ontwikkeld door Jack Nguyen, en de belangrijkste functie is "Quickly remove all cookies associate on a site.".
Download het CRX-bestand van de extensie CookieSmash
Download CookieSmash-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | nnnahedhiocibebgbmfiknmjeoflhdfe |
Officiële URL | https://chrome.google.com/webstore/detail/cookiesmash/nnnahedhiocibebgbmfiknmjeoflhdfe |
Beschrijving | Quickly remove all cookies associate on a site. |
Bestandsgrootte | 67.73 KB |
Aantal Installaties | 149 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2015-06-02 |
Publicatiedatum | 2015-06-01 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Jack Nguyen |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } } |