Gmail Editor

Gmail Editor

Gmail Editor is a powerful Chrome extension designed for users who want to enhance their editing efficiency within Gmail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Gmail Editor",
  "version": "1.3.0",
  "description": "Gmail Editor is a powerful Chrome extension designed for users who want to enhance their editing efficiency within Gmail.",
  "icons": {
    "48": "logo.png",
    "128": "logo.png"
  },
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "static/js/web.js",
        "static/js/client.js"
      ],
      "css": [],
      "matches": [
        "https://mail.google.com/*",
        "https://admin.beacas.com/*",
        "https://admin.easyemail.pro/*",
        "https://demo.easyemail.pro/*",
        "http://localhost:3003/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "logo.png"
    },
    "default_title": "background",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/js/dom.js",
        "static/js/client.js",
        "index.css",
        "logo.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "commands": {},
  "permissions": []
}