History Manager

Manage your history better

History Managerคืออะไร?

History Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย XSpace และคุณลักษณะหลักของมันคือ "Manage your history better"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย History Manager

ดาวน์โหลดไฟล์ส่วนขยาย History Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        # Smart History
Smart History is a chrome extension about history management with pretty user interfaces. Besides basic operations, Smart History provides rich options to acquire a much more delicate searching and listing result.

# Features
- A popup window to show histories briefly by clicking the black feather icon.
- By clicking the "History" title on the popup window, there will be a main interface that can search, delete, hide and group local browser histories
- Search history records by both keyword and date
- Group local browser history records by domain name and hid some history records specified by the user to reduce
the redundancy of showing records significantly
- Highlight important websites where users executed “copy” operations
- Produced statistics about the hit rate and stay time of different websites with vivid charts                    

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

ชื่อ History Manager History Manager
ID ifekbbngjjcachfekcpeejphmkeckged
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/history-manager/ifekbbngjjcachfekcpeejphmkeckged
คำอธิบาย Manage your history better
ขนาดไฟล์ 648 KB
จำนวนการติดตั้ง 14,296
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-03-29
วันที่เผยแพร่ 2018-03-29
คะแนน 3.13/5 รวมทั้งหมด 39 คะแนน
ผู้พัฒนา XSpace
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "History Manager",
    "version": "1.0",
    "short_name": "History",
    "description": "Manage your history better",
    "permissions": [
        "tabs",
        "history",
        "chrome:\/\/favicon\/",
        "storage",
        "bookmarks"
    ],
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": "imgs\/icon.png"
    },
    "chrome_url_overrides": {
        "history": "html\/history.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/jquery-3.1.1.min.js",
                "js\/copy_detect.js"
            ]
        }
    ],
    "manifest_version": 2
}