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 |
官方網址 | 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 |
電子郵箱 | [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" } } } |