Preview Short URLs
Stop short URL abuse by previewing the URL automatically before visiting it.
Cos'è Preview Short URLs?
Preview Short URLs è un'estensione di Chrome sviluppata da azelphur, e la sua funzione principale è "Stop short URL abuse by previewing the URL automatically before visiting it.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Preview Short URLs
Scarica i file di estensione Preview Short URLs 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
This addon will show you a preview page clearly displaying the destination URL whenever you visit a shortened URL. Currently supports: bit.ly bitly.com tinyurl.com is.gd goo.gl Want support for more? Feel free to suggest something. :) Want to help out? This code is on github https://github.com/Azelphur/Preview-Short-URLs patches welcome! Feel free to drop by irc://irc.azelphur.com/#azelphur if you have any questions.
Informazioni di Base sull'Estensione
Nome | Preview Short URLs |
ID | lhnpeajamdliepjblldlghmpkohfjakb |
URL Ufficiale | https://chromewebstore.google.com/detail/preview-short-urls/lhnpeajamdliepjblldlghmpkohfjakb |
Descrizione | Stop short URL abuse by previewing the URL automatically before visiting it. |
Dimensione del File | 11.33 KB |
Conteggio Installazioni | 339 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2013-11-18 |
Data di Pubblicazione | 2013-11-18 |
Valutazione | 3.71/5 Totale 7 Valutazioni |
Sviluppatore | azelphur |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://blog.azelphur.com |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Preview Short URLs", "description": "Stop short URL abuse by previewing the URL automatically before visiting it.", "version": "1.0", "author": "Alfie \"Azelphur\" Day", "homepage_url": "http:\/\/blog.azelphur.com\/", "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/bit.ly\/*", "*:\/\/bitly.com\/*", "*:\/\/tinyurl.com\/*", "*:\/\/is.gd\/*", "*:\/\/goo.gl\/*" ], "icons": { "16": "icons\/icon128.png", "48": "icons\/icon128.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ] } } |