Auto Clean
Cleans the history after every session.
Qu'est-ce que Auto Clean ?
Auto Clean est une extension Chrome développée par Yashwanth Remidi, et sa fonction principale est "Cleans the history after every session.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Auto Clean
Téléchargez les fichiers d'extension Auto Clean au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | ![]() |
ID | bjoblfhgnefjjilpbhamhdgnmgpbhhjh |
URL Officiel | https://chrome.google.com/webstore/detail/auto-clean/bjoblfhgnefjjilpbhamhdgnmgpbhhjh |
Description | Cleans the history after every session. |
Taille du Fichier | 58.28 KB |
Nombre d'Installations | 178 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2020-04-30 |
Date de Publication | 2020-04-29 |
Évaluation | 4.00/5 Total 1 Évaluations |
Développeur | Yashwanth Remidi |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } } |