LinkHistory

Show visited links

Vad är LinkHistory?

LinkHistory är en Chrome-tillägg utvecklad av Xitake, och dess huvudfunktion är "Show visited links".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner LinkHistory-förlängningens CRX-fil

Ladda ner LinkHistory-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn LinkHistory LinkHistory
ID kkfohjphkeplcjojeiannnmbhflimpae
Officiell webbadress https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae
Beskrivning Show visited links
Filstorlek 106 KB
Antal Installationer 546
Aktuell Version 1.1
Senast Uppdaterad 2016-09-24
Publiceringsdatum 2016-09-24
Betyg 4.71/5 Totalt 7 Betyg
Utvecklare Xitake
Betalningssätt free
Tilläggswebbplats http://www.xitake.com
Stödda Språk 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"
    ]
}