Limit History Lifetime

Set a maximum limit on history entry lifetime. By Nick Semenkovich

Limit History Lifetime là gì?

Limit History Lifetime là một tiện ích mở rộng Chrome được phát triển bởi https://semenkovich.com, và tính năng chính của nó là "Set a maximum limit on history entry lifetime. By Nick Semenkovich ".

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

screenshot

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

Tải xuống các tệp mở rộng Limit History Lifetime 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

                        Set a maximum limit on history entries. By Nick Semenkovich 

Long-lasting history items in Chrome can be annoying, especially since it's hard to clear just an older range of entries. This extension limits the maximum lifetime of history items in Chrome to protect your privacy.

This extension:
- Invokes itself every two hours to remove history objects
- Limits the history to a 4-day expiry (adjustable on the options page)
- Takes almost zero RAM (runs as a non-persistent background page)
- Is open source! (See below)


======== CODE ========
Please contribute! https://github.com/semenko/chrome-limit-history-lifetime

Copyright 2014, Nick Semenkovich 

Released under the MIT License. See LICENSE for details.                    

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

Tên Limit History Lifetime Limit History Lifetime
ID opkjpinehmnbdeebdamcapfgfepdiohp
URL Chính Thức https://chromewebstore.google.com/detail/limit-history-lifetime/opkjpinehmnbdeebdamcapfgfepdiohp
Mô tả Set a maximum limit on history entry lifetime. By Nick Semenkovich
Kích Thước Tệp 21.39 KB
Số Lần Cài Đặt 573
Phiên Bản Hiện Tại 2014.7.20
Cập Nhật Lần Cuối 2014-07-20
Ngày Phát Hành 2014-07-20
Đánh Giá 3.50/5 Tổng số 10 Đánh Giá
Nhà Phát Triển https://semenkovich.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/semenko/chrome-limit-history-lifetime
URL Trang Trợ Giúp https://github.com/semenko/chrome-limit-history-lifetime/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "author": "Nick Semenkovich",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "description": "Set a maximum limit on history entry lifetime. By Nick Semenkovich ",
    "manifest_version": 2,
    "name": "Limit History Lifetime",
    "options_page": "options.html",
    "permissions": [
        "alarms",
        "history"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "version": "2014.7.20"
}