De-t.co

This extension points all t.co urls on a page to their expanded url.

Что такое De-t.co?

De-t.co - это расширение Chrome, разработанное johnpbloch, и его основная функция - "This extension points all t.co urls on a page to their expanded url.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения De-t.co

Скачайте файлы расширений De-t.co в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Sometimes twitter's url shortener is slow or unresponsive. Take them out of the equation.

This extension only runs on twitter.com and subdomains of twitter.com.

Since this is a background script, I added a screenshot of kittens. Not sure what else to do.

Image source: http://www.flickr.com/photos/35652310@N00/4139577452/                    

Основная информация о расширении

Название De-t.co De-t.co
ID jmdlmkhbhmlgkpjelenjcpgcldhednif
Официальный URL https://chromewebstore.google.com/detail/de-tco/jmdlmkhbhmlgkpjelenjcpgcldhednif
Описание This extension points all t.co urls on a page to their expanded url.
Размер файла 17.79 KB
Количество установок 21
Текущая Версия 1.1.1
Последнее Обновление 2016-09-13
Дата публикации 2016-09-12
Рейтинг 5.00/5 Всего 2 оценок
Разработчик johnpbloch
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "De-t.co",
    "description": "This extension points all t.co urls on a page to their expanded url.",
    "version": "1.1.1",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "https:\/\/twitter.com\/",
        "https:\/\/*.twitter.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "src\/de-t.co.js"
            ]
        }
    ]
}