ConvertKit Gmail Extension

Identify your Convertkit subscribers from within Gmail!

Co to jest ConvertKit Gmail Extension?

ConvertKit Gmail Extension to rozszerzenie Chrome opracowane przez ConvertKit, a jego główną funkcją jest „Identify your Convertkit subscribers from within Gmail!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ConvertKit Gmail Extension

Pobierz pliki rozszerzeń ConvertKit Gmail Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa ConvertKit Gmail Extension ConvertKit Gmail Extension
ID oainlaijgfacchbmdjpdedindpdekbcb
Oficjalny URL https://chromewebstore.google.com/detail/convertkit-gmail-extensio/oainlaijgfacchbmdjpdedindpdekbcb
Opis Identify your Convertkit subscribers from within Gmail!
Rozmiar pliku 68.18 KB
Liczba instalacji 447
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2019-08-02
Data Publikacji 2019-08-02
Ocena 4.38/5 Łącznie 13 Oceny
Deweloper ConvertKit
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://convertkit.com/
Adres URL Strony Pomocy https://convertkit.com/support/
Adres URL Strony Polityki Prywatności https://convertkit.com/privacy
Obsługiwane Języki 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
}