Email Characters

A tool for email copywriters that showcases where subject line and preheader text will cut off on devices based on character count.

什麼是Email Characters?

Email Characters是由https://www.emailcharacters.com開發的Chrome擴展程式,該擴展的主要功能是“A tool for email copywriters that showcases where subject line and preheader text will cut off on devices based on character count.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Email Characters擴展crx文件

下載Email Characters擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A easy to use tool for email copywriters that allows you to highlight copy intended for email subject lines and preheaders and determine if the text will cut off on email client devices. 

The current devices it checks against are: 
1. Mobile and Desktop Gmail Apps
2. iPhone Mail App
3. Mobile and Desktop Outlook Apps
4. Desktop Yahoo App
5. and more. 

This extension will help you as a marketer increase email open rates by ensuring the important information reaches your user instead of being cut off on major email clients.                    

擴展基本資訊

名稱 Email Characters Email Characters
ID lncfanejfkceajibgniagejmjkjoknhc
官方網址 https://chromewebstore.google.com/detail/email-characters/lncfanejfkceajibgniagejmjkjoknhc
簡介 A tool for email copywriters that showcases where subject line and preheader text will cut off on devices based on character count.
檔案大小 47.52 KB
安裝次數 332
目前版本 1.0
更新時間 2021-11-16
上架時間 2021-11-16
評分 3.00/5 共 2 次評分
開發者 https://www.emailcharacters.com
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Email Characters",
    "description": "A tool for email copywriters that showcases where subject line and preheader text will cut off on devices based on character count.",
    "version": "1.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/document\/*"
            ],
            "js": [
                "googleDocsUtil.js",
                "googleDocScript.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "webContentScript.js"
            ],
            "exclude_matches": [
                "https:\/\/docs.google.com\/document\/*"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/emailcharacters16.png",
            "32": "\/images\/emailcharacters32.png",
            "48": "\/images\/emailcharacters48.png",
            "128": "\/images\/emailcharacters128.png"
        }
    },
    "icons": {
        "16": "\/images\/emailcharacters16.png",
        "32": "\/images\/emailcharacters32.png",
        "48": "\/images\/emailcharacters48.png",
        "128": "\/images\/emailcharacters128.png"
    }
}