LinkHistory
Show visited links
Hvad er LinkHistory?
LinkHistory er en Chrome-udvidelse udviklet af Xitake, og dens hovedfunktion er "Show visited links".
Udvidelsesskærmbilleder
Download LinkHistory-udvidelses-CRX-fil
Download LinkHistory-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
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æggende oplysninger om udvidelsen
Navn | |
ID | kkfohjphkeplcjojeiannnmbhflimpae |
Officiel URL | https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae |
Beskrivelse | Show visited links |
Filstørrelse | 106 KB |
Antal Installationer | 546 |
Nuværende Version | 1.1 |
Senest Opdateret | 2016-09-24 |
Udgivelsesdato | 2016-09-24 |
Bedømmelse | 4.71/5 Samlet 7 Bedømmelser |
Udvikler | Xitake |
Betalingsmetode | free |
Udvidelseswebsted | http://www.xitake.com |
Understøttede Sprog | 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" ] } |