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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
}