Hover Link
When hovering over short url link or any link it will show the final destination URL.
Cos'è Hover Link?
Hover Link è un'estensione di Chrome sviluppata da connerb, e la sua funzione principale è "When hovering over short url link or any link it will show the final destination URL.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hover Link
Scarica i file di estensione Hover Link in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | ggbpdjpocpnohglmhmppdkimpoiklegb |
URL Ufficiale | https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb |
Descrizione | When hovering over short url link or any link it will show the final destination URL. |
Dimensione del File | 60.52 KB |
Conteggio Installazioni | 423 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-10-06 |
Data di Pubblicazione | 2014-10-06 |
Valutazione | 2.44/5 Totale 9 Valutazioni |
Sviluppatore | connerb |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.connerb.com |
Lingue Supportate | 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" } } |