LinkHistory
Show visited links
O que é LinkHistory?
LinkHistory é uma extensão do Chrome desenvolvida por Xitake, e sua principal característica é "Show visited links".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão LinkHistory
Baixe arquivos de extensão LinkHistory no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | kkfohjphkeplcjojeiannnmbhflimpae |
URL Oficial | https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae |
Descrição | Show visited links |
Tamanho do Arquivo | 106 KB |
Contagem de Instalações | 546 |
Versão Atual | 1.1 |
Última Atualização | 2016-09-24 |
Data de Publicação | 2016-09-24 |
Classificação | 4.71/5 Total de 7 Avaliações |
Desenvolvedor | Xitake |
Tipo de Pagamento | free |
Site da Extensão | http://www.xitake.com |
Idiomas Suportados | 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" ] } |