Auto Clean
Cleans the history after every session.
Co to jest Auto Clean?
Auto Clean to rozszerzenie Chrome opracowane przez Yashwanth Remidi, a jego główną funkcją jest „Cleans the history after every session.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Auto Clean
Pobierz pliki rozszerzeń Auto Clean 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
Auto Cleans the complete browsing history when you close the chrome window. Caution: It removes the complete history. It also counts the number of saved history urls in the memory and displays the number. Please only install if you want to keep deleting your history in normal mode. I built it for personal use where I want every session cleared when I close the chrome window. This feature is available by default in Firefox, I just tried to replicate it. Thanks for your support. Caution(again): Only use in dev mode please.
Podstawowe informacje o rozszerzeniu
Nazwa | ![]() |
ID | bjoblfhgnefjjilpbhamhdgnmgpbhhjh |
Oficjalny URL | https://chrome.google.com/webstore/detail/auto-clean/bjoblfhgnefjjilpbhamhdgnmgpbhhjh |
Opis | Cleans the history after every session. |
Rozmiar pliku | 58.28 KB |
Liczba instalacji | 178 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2020-04-30 |
Data Publikacji | 2020-04-29 |
Ocena | 4.00/5 Łącznie 1 Oceny |
Deweloper | Yashwanth Remidi |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Clean", "description": "Cleans the history after every session.", "version": "1.1", "manifest_version": 2, "permissions": [ "tabs", "history", "browsingData" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "128": "images\/icon512.png" }, "browser_action": { "default_title": "Auto Clean", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "128": "images\/icon512.png" } } } |