LinkHistory

Show visited links

什么是LinkHistory?

LinkHistory是由Xitake开发的Chrome扩展程序,该扩展的主要功能是“Show visited links”。

扩展截图

screenshot
screenshot
screenshot

下载LinkHistory扩展crx文件

下载LinkHistory扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        LinkHistory lets you remember last date and time of visited link, and show you the date of the first and last visit in addition to the number of vists so far.
Remember also that in the control panel you can select the color of visited links, enable or disable the balloon text and delete the history of visited links.                    

扩展基本信息

名称 LinkHistory LinkHistory
ID kkfohjphkeplcjojeiannnmbhflimpae
官方URL https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae
简介 Show visited links
文件大小 106 KB
安装次数 546
当前版本 1.1
更新时间 2016-09-24
上架时间 2016-09-24
评分 4.71/5 共7次评分
开发者 Xitake
付费类型 free
扩展官网 http://www.xitake.com
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LinkHistory",
    "version": "1.1",
    "description": "Show visited links",
    "icons": {
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "64": "img\/icon64.png",
        "128": "img\/icon128.png",
        "256": "img\/icon256.png"
    },
    "background": {
        "scripts": [
            "js\/jquery-2.2.3.min.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "LinkHistory",
        "default_icon": "img\/icon128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-2.2.3.min.js",
                "js\/script.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}