Hover Link
When hovering over short url link or any link it will show the final destination URL.
O que é Hover Link?
Hover Link é uma extensão do Chrome desenvolvida por connerb, e sua principal característica é "When hovering over short url link or any link it will show the final destination URL.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hover Link
Baixe arquivos de extensão Hover Link 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
Hover Link is a simple extension that allows you to view and copy short URL and normal URL links on websites. For the short URL links it will display their destination URL as well.
Informações Básicas da Extensão
Nome | |
ID | ggbpdjpocpnohglmhmppdkimpoiklegb |
URL Oficial | https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb |
Descrição | When hovering over short url link or any link it will show the final destination URL. |
Tamanho do Arquivo | 60.52 KB |
Contagem de Instalações | 423 |
Versão Atual | 1.0 |
Última Atualização | 2014-10-06 |
Data de Publicação | 2014-10-06 |
Classificação | 2.44/5 Total de 9 Avaliações |
Desenvolvedor | connerb |
Tipo de Pagamento | free |
Site da Extensão | http://www.connerb.com |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hover Link", "description": "When hovering over short url link or any link it will show the final destination URL.", "version": "1.0", "manifest_version": 2, "icons": { "48": "icons\/48x48.png" }, "background": { "page": "html\/background.html" }, "permissions": [ "*:\/\/*\/*", "storage", "webRequest", "webRequestBlocking" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/script.js" ], "css": [ "css\/script.css" ], "all_frames": false, "run_at": "document_end" } ], "options_page": "html\/options.html", "page_action": { "default_icon": { "19": "icons\/19x19.png" }, "default_title": "Hover Link", "default_popup": "html\/options.html" } } |