LinkHistory

Show visited links

¿Qué es LinkHistory?

LinkHistory es una extensión de Chrome desarrollada por Xitake, y su función principal es "Show visited links".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión LinkHistory

Descarga archivos de extensión LinkHistory en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre LinkHistory LinkHistory
ID kkfohjphkeplcjojeiannnmbhflimpae
URL Oficial https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae
Descripción Show visited links
Tamaño del Archivo 106 KB
Cantidad de Instalaciones 546
Versión Actual 1.1
Última Actualización 2016-09-24
Fecha de Publicación 2016-09-24
Calificación 4.71/5 Total de 7 Calificaciones
Desarrollador Xitake
Tipo de Pago free
Sitio Web de la Extensión http://www.xitake.com
Idiomas Soportados 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"
    ]
}