Limit History Lifetime

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

What is Limit History Lifetime?

Limit History Lifetime is a Chrome extension developed by https://semenkovich.com, and its main feature is "Set a maximum limit on history entry lifetime. By Nick Semenkovich ".

Extension Screenshots

screenshot

Download Limit History Lifetime Extension CRX File

Download Limit History Lifetime extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Limit History Lifetime Limit History Lifetime
ID opkjpinehmnbdeebdamcapfgfepdiohp
Official URL https://chromewebstore.google.com/detail/limit-history-lifetime/opkjpinehmnbdeebdamcapfgfepdiohp
Description Set a maximum limit on history entry lifetime. By Nick Semenkovich
File Size 21.39 KB
Installation Count 573
Current Version 2014.7.20
Last Updated 2014-07-20
Publish Date 2014-07-20
Rating 3.50/5 Total 10 Ratings
Developer https://semenkovich.com
Email [email protected]
Payment Type free
Extension Website https://github.com/semenko/chrome-limit-history-lifetime
Help Page URL https://github.com/semenko/chrome-limit-history-lifetime/issues
Supported Languages 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"
}