Email Characters

Email Characters

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

Merlin
Additional files are visible only to premium users

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": [],
  "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"
  }
}