Limit History Lifetime

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

什麼是Limit History Lifetime?

Limit History Lifetime是由https://semenkovich.com開發的Chrome擴展程式,該擴展的主要功能是“Set a maximum limit on history entry lifetime. By Nick Semenkovich ”。

擴展截圖

screenshot

下載Limit History Lifetime擴展crx文件

下載Limit History Lifetime擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Limit History Lifetime Limit History Lifetime
ID opkjpinehmnbdeebdamcapfgfepdiohp
官方網址 https://chromewebstore.google.com/detail/limit-history-lifetime/opkjpinehmnbdeebdamcapfgfepdiohp
簡介 Set a maximum limit on history entry lifetime. By Nick Semenkovich
檔案大小 21.39 KB
安裝次數 573
目前版本 2014.7.20
更新時間 2014-07-20
上架時間 2014-07-20
評分 3.50/5 共 10 次評分
開發者 https://semenkovich.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/semenko/chrome-limit-history-lifetime
說明頁面URL https://github.com/semenko/chrome-limit-history-lifetime/issues
支援的語言 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"
}