Preview Short URLs

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

Vad är Preview Short URLs?

Preview Short URLs är en Chrome-tillägg utvecklad av azelphur, och dess huvudfunktion är "Stop short URL abuse by previewing the URL automatically before visiting it.".

Tilläggsskärmbilder

screenshot

Ladda ner Preview Short URLs-förlängningens CRX-fil

Ladda ner Preview Short URLs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Preview Short URLs Preview Short URLs
ID lhnpeajamdliepjblldlghmpkohfjakb
Officiell webbadress https://chromewebstore.google.com/detail/preview-short-urls/lhnpeajamdliepjblldlghmpkohfjakb
Beskrivning Stop short URL abuse by previewing the URL automatically before visiting it.
Filstorlek 11.33 KB
Antal Installationer 339
Aktuell Version 1.0
Senast Uppdaterad 2013-11-18
Publiceringsdatum 2013-11-18
Betyg 3.71/5 Totalt 7 Betyg
Utvecklare azelphur
Betalningssätt free
Tilläggswebbplats http://blog.azelphur.com
Stödda Språk 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"
        ]
    }
}