History Limiter Custom
Limits the number of items the browser will keep in history by days.
什麼是History Limiter Custom?
History Limiter Custom是由https://blandlifedev.blogspot.com開發的Chrome擴展程式,該擴展的主要功能是“Limits the number of items the browser will keep in history by days.”。
擴展截圖
下載History Limiter Custom擴展crx文件
下載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 |
| 官方網址 | 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"
]
} | |