Preview Short URLs

Stop short URL abuse by previewing the URL automatically before visiting it.

O que é Preview Short URLs?

Preview Short URLs é uma extensão do Chrome desenvolvida por azelphur, e sua principal característica é "Stop short URL abuse by previewing the URL automatically before visiting it.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Preview Short URLs

Baixe arquivos de extensão Preview Short URLs 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

                        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.                    

Informações Básicas da Extensão

Nome Preview Short URLs Preview Short URLs
ID lhnpeajamdliepjblldlghmpkohfjakb
URL Oficial https://chromewebstore.google.com/detail/preview-short-urls/lhnpeajamdliepjblldlghmpkohfjakb
Descrição Stop short URL abuse by previewing the URL automatically before visiting it.
Tamanho do Arquivo 11.33 KB
Contagem de Instalações 339
Versão Atual 1.0
Última Atualização 2013-11-18
Data de Publicação 2013-11-18
Classificação 3.71/5 Total de 7 Avaliações
Desenvolvedor azelphur
Tipo de Pagamento free
Site da Extensão http://blog.azelphur.com
Idiomas Suportados 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"
        ]
    }
}