CookieSmash
Quickly remove all cookies associate on a site.
Co to jest CookieSmash?
CookieSmash to rozszerzenie Chrome opracowane przez Jack Nguyen, a jego główną funkcją jest „Quickly remove all cookies associate on a site.”.
Pobierz plik CRX rozszerzenia CookieSmash
Pobierz pliki rozszerzeń CookieSmash w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | nnnahedhiocibebgbmfiknmjeoflhdfe |
Oficjalny URL | https://chrome.google.com/webstore/detail/cookiesmash/nnnahedhiocibebgbmfiknmjeoflhdfe |
Opis | Quickly remove all cookies associate on a site. |
Rozmiar pliku | 67.73 KB |
Liczba instalacji | 149 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2015-06-02 |
Data Publikacji | 2015-06-01 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Jack Nguyen |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } } |