Limit History Lifetime

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

Co to jest Limit History Lifetime?

Limit History Lifetime to rozszerzenie Chrome opracowane przez https://semenkovich.com, a jego główną funkcją jest „Set a maximum limit on history entry lifetime. By Nick Semenkovich ”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Limit History Lifetime

Pobierz pliki rozszerzeń Limit History Lifetime w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Limit History Lifetime Limit History Lifetime
ID opkjpinehmnbdeebdamcapfgfepdiohp
Oficjalny URL https://chromewebstore.google.com/detail/limit-history-lifetime/opkjpinehmnbdeebdamcapfgfepdiohp
Opis Set a maximum limit on history entry lifetime. By Nick Semenkovich
Rozmiar pliku 21.39 KB
Liczba instalacji 573
Aktualna Wersja 2014.7.20
Ostatnia Aktualizacja 2014-07-20
Data Publikacji 2014-07-20
Ocena 3.50/5 Łącznie 10 Oceny
Deweloper https://semenkovich.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/semenko/chrome-limit-history-lifetime
Adres URL Strony Pomocy https://github.com/semenko/chrome-limit-history-lifetime/issues
Obsługiwane Języki 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"
}