Auto Clean
Cleans the history after every session.
Auto Cleanとは何ですか?
Auto CleanはYashwanth Remidiによって開発されたChromeの拡張機能で、その主な機能は「Cleans the history after every session.」です。
拡張機能のスクリーンショット
Auto Clean拡張機能のCRXファイルをダウンロード
Auto Clean拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | ![]() |
ID | bjoblfhgnefjjilpbhamhdgnmgpbhhjh |
公式URL | https://chrome.google.com/webstore/detail/auto-clean/bjoblfhgnefjjilpbhamhdgnmgpbhhjh |
説明 | Cleans the history after every session. |
ファイルサイズ | 58.28 KB |
インストール数 | 178 |
現在のバージョン | 1.1 |
最終更新日 | 2020-04-30 |
公開日 | 2020-04-29 |
評価 | 4.00/5 合計 1 レビュー |
開発者 | Yashwanth Remidi |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } } } |