History Limiter Custom
Limits the number of items the browser will keep in history by days.
Что такое History Limiter Custom?
History Limiter Custom - это расширение Chrome, разработанное https://blandlifedev.blogspot.com, и его основная функция - "Limits the number of items the browser will keep in history by days.".
Снимки экрана расширения
Скачать файл CRX расширения History Limiter Custom
Скачайте файлы расширений History Limiter Custom в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A personal edit of nschneirov's History Limiter put up to share.
Overall the logic remain unchanged from the original version.
Main changes:
- code reworks to eliminate need for jQuery and to facilitate manifest ver 2
- event page enabled
- no changes to logic, no new functions
The main aim of this edit is to make it event page enabled so it unloads when not needed thus saving memory.
=================
CHANGELOG:
1.2 [21/04/2018]
- back to using a set button to overcome the premature clear
- some minor UI changes
1.1.1 [10/05/2014]
- history will be trimmed right after the day value is edited
1.1 [27/04/2014]
- tidying and restructuring of code
- changed options page to auto save
- added textfield number check
- added working 0 days mode (no history) Основная информация о расширении
| Название | |
| ID | ibpfkplbhnbiklpjacjbaelahebmbmpp |
| Официальный URL | https://chromewebstore.google.com/detail/history-limiter-custom/ibpfkplbhnbiklpjacjbaelahebmbmpp |
| Описание | Limits the number of items the browser will keep in history by days. |
| Размер файла | 9.56 KB |
| Количество установок | 6,707 |
| Текущая Версия | 1.2 |
| Последнее Обновление | 2021-04-01 |
| Дата публикации | 2018-04-20 |
| Рейтинг | 4.05/5 Всего 37 оценок |
| Разработчик | https://blandlifedev.blogspot.com |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | http://blandlifedev.blogspot.com/ |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "History Limiter Custom",
"version": "1.2",
"manifest_version": 2,
"description": "Limits the number of items the browser will keep in history by days.",
"icons": {
"48": "icon.png"
},
"background": {
"scripts": [
"bg.js",
"common.js"
],
"persistent": false
},
"options_page": "options.html",
"permissions": [
"history"
]
} | |