Auto Clean
Cleans the history after every session.
Auto Clean là gì?
Auto Clean là một tiện ích mở rộng Chrome được phát triển bởi Yashwanth Remidi, và tính năng chính của nó là "Cleans the history after every session.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Auto Clean
Tải xuống các tệp mở rộng Auto Clean dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ![]() |
ID | bjoblfhgnefjjilpbhamhdgnmgpbhhjh |
URL Chính Thức | https://chrome.google.com/webstore/detail/auto-clean/bjoblfhgnefjjilpbhamhdgnmgpbhhjh |
Mô tả | Cleans the history after every session. |
Kích Thước Tệp | 58.28 KB |
Số Lần Cài Đặt | 178 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2020-04-30 |
Ngày Phát Hành | 2020-04-29 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Yashwanth Remidi |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |