LinkHistory

Show visited links

Cos'è LinkHistory?

LinkHistory è un'estensione di Chrome sviluppata da Xitake, e la sua funzione principale è "Show visited links".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione LinkHistory

Scarica i file di estensione LinkHistory in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome LinkHistory LinkHistory
ID kkfohjphkeplcjojeiannnmbhflimpae
URL Ufficiale https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae
Descrizione Show visited links
Dimensione del File 106 KB
Conteggio Installazioni 546
Versione Corrente 1.1
Ultimo Aggiornamento 2016-09-24
Data di Pubblicazione 2016-09-24
Valutazione 4.71/5 Totale 7 Valutazioni
Sviluppatore Xitake
Tipo di Pagamento free
Sito Web dell'Estensione http://www.xitake.com
Lingue Supportate 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"
    ]
}