History Limiter Custom

Limits the number of items the browser will keep in history by days.

History Limiter Custom là gì?

History Limiter Custom là một tiện ích mở rộng Chrome được phát triển bởi https://blandlifedev.blogspot.com, và tính năng chính của nó là "Limits the number of items the browser will keep in history by days.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng History Limiter Custom

Tải xuống các tệp mở rộng History Limiter Custom dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên History Limiter Custom History Limiter Custom
ID ibpfkplbhnbiklpjacjbaelahebmbmpp
URL Chính Thức https://chromewebstore.google.com/detail/history-limiter-custom/ibpfkplbhnbiklpjacjbaelahebmbmpp
Mô tả Limits the number of items the browser will keep in history by days.
Kích Thước Tệp 9.56 KB
Số Lần Cài Đặt 6,707
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2021-04-01
Ngày Phát Hành 2018-04-20
Đánh Giá 4.05/5 Tổng số 37 Đánh Giá
Nhà Phát Triển https://blandlifedev.blogspot.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://blandlifedev.blogspot.com/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}