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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.emailcharacters.com, και η κύρια λειτουργία του είναι "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

Λήψη αρχείου CRX της επέκτασης Email Characters

Λήψη αρχείων επέκτασης 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
Επίσημο URL 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"
    }
}