Preview Short URLs

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

Wat is Preview Short URLs?

Preview Short URLs is een Chrome-extensie ontwikkeld door azelphur, en de belangrijkste functie is "Stop short URL abuse by previewing the URL automatically before visiting it.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Preview Short URLs

Download Preview Short URLs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Preview Short URLs Preview Short URLs
ID lhnpeajamdliepjblldlghmpkohfjakb
Officiële URL https://chromewebstore.google.com/detail/preview-short-urls/lhnpeajamdliepjblldlghmpkohfjakb
Beschrijving Stop short URL abuse by previewing the URL automatically before visiting it.
Bestandsgrootte 11.33 KB
Aantal Installaties 339
Huidige Versie 1.0
Laatst Bijgewerkt 2013-11-18
Publicatiedatum 2013-11-18
Beoordeling 3.71/5 Totaal 7 Beoordelingen
Ontwikkelaar azelphur
Betalingswijze free
Extensiewebsite http://blog.azelphur.com
Ondersteunde Talen 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"
        ]
    }
}