ConvertKit Gmail Extension

Identify your Convertkit subscribers from within Gmail!

Was ist ConvertKit Gmail Extension?

ConvertKit Gmail Extension ist eine Chrome-Erweiterung, die von ConvertKit entwickelt wurde, und ihr Hauptmerkmal ist "Identify your Convertkit subscribers from within Gmail!".

Erweiterungsscreenshots

screenshot

ConvertKit Gmail Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie ConvertKit Gmail Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name ConvertKit Gmail Extension ConvertKit Gmail Extension
ID oainlaijgfacchbmdjpdedindpdekbcb
Offizielle URL https://chromewebstore.google.com/detail/convertkit-gmail-extensio/oainlaijgfacchbmdjpdedindpdekbcb
Beschreibung Identify your Convertkit subscribers from within Gmail!
Dateigröße 68.18 KB
Installationsanzahl 447
Aktuelle Version 0.3
Letztes Update 2019-08-02
Veröffentlichungsdatum 2019-08-02
Bewertung 4.38/5 Insgesamt 13 Bewertungen
Entwickler ConvertKit
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://convertkit.com/
Hilfeseite URL https://convertkit.com/support/
URL der Datenschutzrichtlinien-Seite https://convertkit.com/privacy
Unterstützte Sprachen 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
}