ConvertKit Gmail Extension

Identify your Convertkit subscribers from within Gmail!

什么是ConvertKit Gmail Extension?

ConvertKit Gmail Extension是由ConvertKit开发的Chrome扩展程序,该扩展的主要功能是“Identify your Convertkit subscribers from within Gmail!”。

扩展截图

screenshot

下载ConvertKit Gmail Extension扩展crx文件

下载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
}