Last Visited Toolip

Shows last visit time in link toolips.

Cos'è Last Visited Toolip?

Last Visited Toolip è un'estensione di Chrome sviluppata da Rotem Dan, e la sua funzione principale è "Shows last visit time in link toolips.".

Scarica il file CRX dell'estensione Last Visited Toolip

Scarica i file di estensione Last Visited Toolip 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

                        Works best when visited links are distinctly colored, such as with the extension:
https://chrome.google.com/webstore/detail/gray-visited-links/kkjgfghpbiglkmaoekkankbcjckihcah

Animated screen capture:
https://giphy.com/gifs/1Ya3O25ThPpUVCOG44                    

Informazioni di Base sull'Estensione

Nome Last Visited Toolip Last Visited Toolip
ID hgjplicehclhhnijafojpkpancilpmen
URL Ufficiale https://chrome.google.com/webstore/detail/last-visited-toolip/hgjplicehclhhnijafojpkpancilpmen
Descrizione Shows last visit time in link toolips.
Dimensione del File 21.35 KB
Conteggio Installazioni 131
Versione Corrente 0.1.4
Ultimo Aggiornamento 2018-03-19
Data di Pubblicazione 2018-03-19
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Rotem Dan
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/rotemdan/LastVisitedTooltip
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Last Visited Toolip",
    "version": "0.1.4",
    "description": "Shows last visit time in link toolips.",
    "icons": {
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "author": "Rotem Dan",
    "homepage_url": "https:\/\/github.com\/rotemdan\/LastVisitedTooltip",
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "common.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.min.js",
                "common.js",
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": false
        }
    ],
    "permissions": [
        "history"
    ]
}