ConvertKit Gmail Extension

Identify your Convertkit subscribers from within Gmail!

Co je ConvertKit Gmail Extension?

ConvertKit Gmail Extension je rozšíření Chrome vyvinuté ConvertKit, a jeho hlavní funkcí je „Identify your Convertkit subscribers from within Gmail!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření ConvertKit Gmail Extension

Stáhněte si soubory rozšíření ConvertKit Gmail Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název ConvertKit Gmail Extension ConvertKit Gmail Extension
ID oainlaijgfacchbmdjpdedindpdekbcb
Oficiální URL https://chromewebstore.google.com/detail/convertkit-gmail-extensio/oainlaijgfacchbmdjpdedindpdekbcb
Popis Identify your Convertkit subscribers from within Gmail!
Velikost souboru 68.18 KB
Počet instalací 447
Aktuální Verze 0.3
Poslední Aktualizace 2019-08-02
Datum Vydání 2019-08-02
Hodnocení 4.38/5 Celkem 13 Hodnocení
Vývojář ConvertKit
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://convertkit.com/
URL Stránky Nápovědy https://convertkit.com/support/
URL Stránky Zásad Ochrany Soukromí https://convertkit.com/privacy
Podporované Jazyky 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
}