LinkHistory

Show visited links

Co to jest LinkHistory?

LinkHistory to rozszerzenie Chrome opracowane przez Xitake, a jego główną funkcją jest „Show visited links”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia LinkHistory

Pobierz pliki rozszerzeń LinkHistory w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa LinkHistory LinkHistory
ID kkfohjphkeplcjojeiannnmbhflimpae
Oficjalny URL https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae
Opis Show visited links
Rozmiar pliku 106 KB
Liczba instalacji 546
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2016-09-24
Data Publikacji 2016-09-24
Ocena 4.71/5 Łącznie 7 Oceny
Deweloper Xitake
Typ Płatności free
Strona Rozszerzenia http://www.xitake.com
Obsługiwane Języki 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"
    ]
}