Auto History Wipe

Automatically deletes browsing history and optionally other browsing data.

Auto History Wipe là gì?

Auto History Wipe là một tiện ích mở rộng Chrome được phát triển bởi Nick Vogt, và tính năng chính của nó là "Automatically deletes browsing history and optionally other browsing data.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Auto History Wipe

Tải xuống các tệp mở rộng Auto History Wipe 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 History Wipe automatically deletes the browsing history every time Chrome starts. It uses no additional resources and performs no other background tasks. It can be configured in the Options page to automatically clear other browsing data as well.

NOTES
- If you sign in to Chrome and have your history synced automatically by Google, this extension may not work.
- Depending on how much data needs to be cleared, there may be a brief 2 to 3 second pause before Chrome becomes responsive.

HOW IT WORKS
Extensions are not able to run after Chrome exits without requiring the 'background' permission, which keeps them running in the background all the time. In order to delete browsing data automatically, without requiring background permission or using extra resources, this extension runs immediately each time Chrome starts. After doing so, it will not run again until the next time Chrome is started.

WHY USE IT
Chrome does not have a setting to clear the history and several other browsing data areas upon exit. You can use Incognito mode, but this has no history at all. This extension allows you to use Chrome normally, with full history functionality, and have it wiped clean automatically. You do not need to click any buttons.

ADDITIONAL OPTIONS
As of version 1.1.0, the extension now has several other data points it can wipe clean automatically, which can be configured on the Options page. Keep in mind that even if you have cookies cleared, Google automatically sets a couple new ones related to Chrome every time you start a new tab (which is why the third screenshot shows two cookies).

PROBLEMS & FEEDBACK
If you experience any problems or errors with this extension, please use the 'Support' tab to submit a report and I'll work to get it fixed as quickly as I can.

CHANGELOG
1.1.8
- Chrome stopped counting Developer Tools (running in its own window) towards the total window count, so the extension had to be reworked.
- Extension now also clears data on Chrome close if you keep Chrome running in the background.

1.1.7
- Added checkbox to clear local cookie data on exit (using Chrome settings optional permission).

1.1.6
- Split cookies and website data into two separate options.
- Removed global variables from event page.
- Minor tweaks.

1.1.5
- Completed making downloads permission optional.

1.1.4
- First stage in making downloads permission optional.

1.1.3
- Added download history API to remove download history more reliably.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Auto History Wipe Auto History Wipe
ID hdgnienkeomlaeeojaibeicglpoaadnj
URL Chính Thức https://chrome.google.com/webstore/detail/auto-history-wipe/hdgnienkeomlaeeojaibeicglpoaadnj
Mô tả Automatically deletes browsing history and optionally other browsing data.
Kích Thước Tệp 15.61 KB
Số Lần Cài Đặt 341,002
Phiên Bản Hiện Tại 1.1.8
Cập Nhật Lần Cuối 2015-07-15
Ngày Phát Hành 2015-07-15
Đánh Giá 4.00/5 Tổng số 249 Đánh Giá
Nhà Phát Triển Nick Vogt
Loại Thanh Toán free
Trang Web Mở Rộng http://www.h3xed.com/web-and-internet/automatically-delete-browsing-history-in-chrome
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto History Wipe",
    "short_name": "Auto History Wipe",
    "version": "1.1.8",
    "minimum_chrome_version": "21",
    "description": "Automatically deletes browsing history and optionally other browsing data.",
    "author": "Nick Vogt",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "storage",
        "browsingData"
    ],
    "optional_permissions": [
        "downloads",
        "contentSettings"
    ],
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "offline_enabled": true
}