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
}