Startup Cookie Destroyer
Remove unwanted cookies and site data on start-up, and manually from the toolbar.
Co to jest Startup Cookie Destroyer?
Startup Cookie Destroyer to rozszerzenie Chrome opracowane przez Aaron Horler, a jego główną funkcją jest „Remove unwanted cookies and site data on start-up, and manually from the toolbar.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Startup Cookie Destroyer
Pobierz pliki rozszerzeń Startup Cookie Destroyer 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
Remove unwanted cookies and all other site data on startup, and manually from the extension toolbar. Wanted cookies are defined using a white list. GitHub source - https://github.com/aghorler/Startup-Cookie-Destroyer CHANGELOG 1.2.0 - Add cacheStorage option to browsing data clear, attempted return to Chrome Web Store. 1.1.0 - Automatic option saving. 1.0.3 - Logic improvements. Hover descriptions on options page. 1.0.2 - The extension no longer clears all cookies on installation. 1.0.1 - First release.
Podstawowe informacje o rozszerzeniu
Nazwa | Startup Cookie Destroyer |
ID | gnofoiakeednmambnlgcooiflejppmoj |
Oficjalny URL | https://chromewebstore.google.com/detail/startup-cookie-destroyer/gnofoiakeednmambnlgcooiflejppmoj |
Opis | Remove unwanted cookies and site data on start-up, and manually from the toolbar. |
Rozmiar pliku | 11.96 KB |
Liczba instalacji | 214 |
Aktualna Wersja | 1.2.0 |
Ostatnia Aktualizacja | 2022-02-28 |
Data Publikacji | 2018-05-16 |
Ocena | 4.33/5 Łącznie 6 Oceny |
Deweloper | Aaron Horler |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/aghorler/Startup-Cookie-Destroyer |
Adres URL Strony Pomocy | https://github.com/aghorler/Startup-Cookie-Destroyer |
Adres URL Strony Polityki Prywatności | https://aaronhorler.com/privacy.txt |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Startup Cookie Destroyer", "version": "1.2.0", "manifest_version": 2, "description": "Remove unwanted cookies and site data on start-up, and manually from the toolbar.", "background": { "scripts": [ "\/js\/background.js" ], "persistent": false }, "icons": { "128": "\/img\/icon128.png" }, "browser_action": { "name": "Clear cookies and site data." }, "options_ui": { "page": "\/html\/options.html", "chrome_style": true, "open_in_tab": false }, "permissions": [ "browsingData", "storage", "cookies", "http:\/\/*\/*", "https:\/\/*\/*" ] } |