Gmail Contacts

Adds a Google Contacts shortcut to the new Gmail interface

Что такое Gmail Contacts?

Gmail Contacts - это расширение Chrome, разработанное http://zvizvi.xyz, и его основная функция - "Adds a Google Contacts shortcut to the new Gmail interface".

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

screenshot
screenshot

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

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

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

                        Adds a Google Contacts shortcut to the new Gmail interface                    

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

Название Gmail Contacts Gmail Contacts
ID jgakkffecofibnpbdkkphaminipefbjj
Официальный URL https://chrome.google.com/webstore/detail/gmail-contacts/jgakkffecofibnpbdkkphaminipefbjj
Описание Adds a Google Contacts shortcut to the new Gmail interface
Размер файла 94.91 KB
Количество установок 3,454
Текущая Версия 2.0.5
Последнее Обновление 2019-05-27
Дата публикации 2019-05-27
Рейтинг 5.00/5 Всего 5 оценок
Разработчик http://zvizvi.xyz
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://zvizvi.xyz/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Contacts",
    "version": "2.0.5",
    "author": "[email protected]",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": "img\/icon16.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/drive.google.com\/*",
                "https:\/\/docs.google.com\/*",
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "js\/jquery-1.11.3.min.js",
                "js\/main.js"
            ]
        }
    ],
    "icons": {
        "128": "img\/icon128.png",
        "96": "img\/icon96.png",
        "72": "img\/icon72.png",
        "64": "img\/icon64.png",
        "48": "img\/icon48.png",
        "24": "img\/icon24.png",
        "16": "img\/icon16.png"
    },
    "manifest_version": 2
}