Preview Short URLs
Stop short URL abuse by previewing the URL automatically before visiting it.
¿Qué es Preview Short URLs?
Preview Short URLs es una extensión de Chrome desarrollada por azelphur, y su función principal es "Stop short URL abuse by previewing the URL automatically before visiting it.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Preview Short URLs
Descarga archivos de extensión Preview Short URLs en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Preview Short URLs |
ID | lhnpeajamdliepjblldlghmpkohfjakb |
URL Oficial | https://chromewebstore.google.com/detail/preview-short-urls/lhnpeajamdliepjblldlghmpkohfjakb |
Descripción | Stop short URL abuse by previewing the URL automatically before visiting it. |
Tamaño del Archivo | 11.33 KB |
Cantidad de Instalaciones | 339 |
Versión Actual | 1.0 |
Última Actualización | 2013-11-18 |
Fecha de Publicación | 2013-11-18 |
Calificación | 3.71/5 Total de 7 Calificaciones |
Desarrollador | azelphur |
Tipo de Pago | free |
Sitio Web de la Extensión | http://blog.azelphur.com |
Idiomas Soportados | 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" ] } } |