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."입니다.
확장 프로그램 스크린샷
Email Characters 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } } |