Preview Short URLs
Stop short URL abuse by previewing the URL automatically before visiting it.
Что такое Preview Short URLs?
Preview Short URLs - это расширение Chrome, разработанное azelphur, и его основная функция - "Stop short URL abuse by previewing the URL automatically before visiting it.".
Снимки экрана расширения
Скачать файл CRX расширения Preview Short URLs
Скачайте файлы расширений Preview Short URLs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        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.                     Основная информация о расширении
| Название |   |  
| ID | lhnpeajamdliepjblldlghmpkohfjakb | 
| Официальный URL | https://chromewebstore.google.com/detail/preview-short-urls/lhnpeajamdliepjblldlghmpkohfjakb | 
| Описание | Stop short URL abuse by previewing the URL automatically before visiting it. | 
| Размер файла | 11.33 KB | 
| Количество установок | 339 | 
| Текущая Версия | 1.0 | 
| Последнее Обновление | 2013-11-18 | 
| Дата публикации | 2013-11-18 | 
| Рейтинг | 3.71/5 Всего 7 оценок | 
| Разработчик | azelphur | 
| Тип оплаты | free | 
| Официальный сайт расширения | http://blog.azelphur.com | 
| Поддерживаемые языки | 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"
        ]
    }
}  |  |