LinkHistory
Show visited links
Qu'est-ce que LinkHistory ?
LinkHistory est une extension Chrome développée par Xitake, et sa fonction principale est "Show visited links".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension LinkHistory
Téléchargez les fichiers d'extension LinkHistory au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | kkfohjphkeplcjojeiannnmbhflimpae |
URL Officiel | https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae |
Description | Show visited links |
Taille du Fichier | 106 KB |
Nombre d'Installations | 546 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2016-09-24 |
Date de Publication | 2016-09-24 |
Évaluation | 4.71/5 Total 7 Évaluations |
Développeur | Xitake |
Type de Paiement | free |
Site Web de l'Extension | http://www.xitake.com |
Langues Prises en Charge | 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" ] } |