LinkHistory

Show visited links

What is LinkHistory?

LinkHistory is a Chrome extension developed by Xitake, and its main feature is "Show visited links".

Extension Screenshots

screenshot
screenshot
screenshot

Download LinkHistory Extension CRX File

Download LinkHistory extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name LinkHistory LinkHistory
ID kkfohjphkeplcjojeiannnmbhflimpae
Official URL https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae
Description Show visited links
File Size 106 KB
Installation Count 546
Current Version 1.1
Last Updated 2016-09-24
Publish Date 2016-09-24
Rating 4.71/5 Total 7 Ratings
Developer Xitake
Payment Type free
Extension Website http://www.xitake.com
Supported Languages 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"
    ]
}