ConvertKit Gmail Extension

Identify your Convertkit subscribers from within Gmail!

Что такое ConvertKit Gmail Extension?

ConvertKit Gmail Extension - это расширение Chrome, разработанное ConvertKit, и его основная функция - "Identify your Convertkit subscribers from within Gmail!".

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

screenshot

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

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

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

                        The ConvertKit for Gmail Extension allows you to identify your ConvertKit subscribers right from within Gmail. When you receive an email, the extension will highlight whether or not that person is a subscriber of yours within ConvertKit. It also highlights all of the tags that you have applied to that subscriber. 

You can quickly identify important information, like whether or not an individual has subscribed to your newsletter, bought your book, or started your course. 

The extension is a wonderful way for you to quickly utilize your rich ConvertKit data without having to flip back and forth from the app, to gmail, and back again!                    

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

Название ConvertKit Gmail Extension ConvertKit Gmail Extension
ID oainlaijgfacchbmdjpdedindpdekbcb
Официальный URL https://chromewebstore.google.com/detail/convertkit-gmail-extensio/oainlaijgfacchbmdjpdedindpdekbcb
Описание Identify your Convertkit subscribers from within Gmail!
Размер файла 68.18 KB
Количество установок 447
Текущая Версия 0.3
Последнее Обновление 2019-08-02
Дата публикации 2019-08-02
Рейтинг 4.38/5 Всего 13 оценок
Разработчик ConvertKit
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://convertkit.com/
URL страницы помощи https://convertkit.com/support/
URL страницы политики конфиденциальности https://convertkit.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ConvertKit Gmail Extension",
    "description": "Identify your Convertkit subscribers from within Gmail!",
    "version": "0.3",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                ".\/jquery.min.js",
                ".\/inboxsdk.js",
                ".\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "logo.png",
        "icon.png"
    ],
    "permissions": [
        "storage",
        "https:\/\/mail.google.com\/",
        "https:\/\/inbox.google.com\/",
        "https:\/\/api.convertkit.com\/"
    ],
    "manifest_version": 2
}