Last Visited Toolip

Shows last visit time in link toolips.

Hvad er Last Visited Toolip?

Last Visited Toolip er en Chrome-udvidelse udviklet af Rotem Dan, og dens hovedfunktion er "Shows last visit time in link toolips.".

Download Last Visited Toolip-udvidelses-CRX-fil

Download Last Visited Toolip-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Last Visited Toolip Last Visited Toolip
ID hgjplicehclhhnijafojpkpancilpmen
Officiel URL https://chrome.google.com/webstore/detail/last-visited-toolip/hgjplicehclhhnijafojpkpancilpmen
Beskrivelse Shows last visit time in link toolips.
Filstørrelse 21.35 KB
Antal Installationer 131
Nuværende Version 0.1.4
Senest Opdateret 2018-03-19
Udgivelsesdato 2018-03-19
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Rotem Dan
Betalingsmetode free
Udvidelseswebsted https://github.com/rotemdan/LastVisitedTooltip
Understøttede Sprog 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"
    ]
}