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 |
电子邮箱 | [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" } } } |