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
}