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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ History Limiter Custom History Limiter Custom
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"
    ]
}