Growl Voice for Gmail

Allows external apps to handle the 'tel:' protocol instead of G-mail

Что такое Growl Voice for Gmail?

Growl Voice for Gmail - это расширение Chrome, разработанное Get on Social, и его основная функция - "Allows external apps to handle the 'tel:' protocol instead of G-mail".

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

screenshot
screenshot

Скачать файл CRX расширения Growl Voice for Gmail

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

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

                        Allows external apps to handle the 'tel:' protocol instead of G-mail. You can use Growl Voice, Skype, or any any application / program outside of Gmail. Gmail normally handles phone numbers internally, this extension changes that behavior.                    

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

Название Growl Voice for Gmail Growl Voice for Gmail
ID jjdcmjnbjlbgoioemcghemihjaoenidg
Официальный URL https://chrome.google.com/webstore/detail/growl-voice-for-gmail/jjdcmjnbjlbgoioemcghemihjaoenidg
Описание Allows external apps to handle the 'tel:' protocol instead of G-mail
Размер файла 16.11 KB
Количество установок 173
Текущая Версия 1.3
Последнее Обновление 2013-12-08
Дата публикации 2013-12-08
Рейтинг 4.33/5 Всего 3 оценок
Разработчик Get on Social
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.getonsocial.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Growl Voice for Gmail",
    "version": "1.3",
    "description": "Allows external apps to handle the 'tel:' protocol instead of G-mail",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "background-ck.js"
        ]
    },
    "icons": {
        "128": "voice-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/_\/scs\/mail-static*"
            ],
            "js": [
                "myscript-ck.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2
}