Auto Clean
Cleans the history after every session.
Cos'è Auto Clean?
Auto Clean è un'estensione di Chrome sviluppata da Yashwanth Remidi, e la sua funzione principale è "Cleans the history after every session.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Auto Clean
Scarica i file di estensione Auto Clean 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
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.
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | bjoblfhgnefjjilpbhamhdgnmgpbhhjh |
URL Ufficiale | https://chrome.google.com/webstore/detail/auto-clean/bjoblfhgnefjjilpbhamhdgnmgpbhhjh |
Descrizione | Cleans the history after every session. |
Dimensione del File | 58.28 KB |
Conteggio Installazioni | 178 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2020-04-30 |
Data di Pubblicazione | 2020-04-29 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | Yashwanth Remidi |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } } |