Gmail™ Instant Title Links

Automatically turn URLs in gmail titles clickable links

Что такое Gmail™ Instant Title Links?

Gmail™ Instant Title Links - это расширение Chrome, разработанное Aviche, и его основная функция - "Automatically turn URLs in gmail titles clickable links".

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

screenshot

Скачать файл CRX расширения Gmail™ Instant Title Links

Скачайте файлы расширений Gmail™ Instant Title Links в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        When people share a website the copy the url and in many cases simply paste it in the email's title...
The thing is that for some reason Gmail™ doesn't change the url in email titles into a link which means you need to copy it and paste it in the browser...

Now lets admit, this isn't a real big problem... but wouldn't it be nice if you can turn those URL titles into links?
Well now you can... Just add this extension and and UrL that appears in your email title will be turned into a link :-)

Enjoy                    

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

Название Gmail™ Instant Title Links Gmail™ Instant Title Links
ID pchdmcajhbjplgkkinpfncgenmiacpfk
Официальный URL https://chrome.google.com/webstore/detail/gmail-instant-title-links/pchdmcajhbjplgkkinpfncgenmiacpfk
Описание Automatically turn URLs in gmail titles clickable links
Размер файла 46.08 KB
Количество установок 13
Текущая Версия 2.0
Последнее Обновление 2015-03-25
Дата публикации 2015-03-25
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Aviche
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail\u2122 Instant Title Links",
    "description": "Automatically turn URLs in gmail titles clickable links",
    "version": "2.0",
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "activeTab",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}