History Manager

Manage your history better

什么是History Manager?

History Manager是由XSpace开发的Chrome扩展程序,该扩展的主要功能是“Manage your history better”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载History Manager扩展crx文件

下载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
}