Limit History Lifetime

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

Что такое Limit History Lifetime?

Limit History Lifetime - это расширение Chrome, разработанное https://semenkovich.com, и его основная функция - "Set a maximum limit on history entry lifetime. By Nick Semenkovich ".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Limit History Lifetime

Скачайте файлы расширений 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
Официальный 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"
}