Easy Reply

Easy Reply

Easy Reply is a powerful and convenient Gmail extension that simplifies the process of getting others to respond to your emails.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "[email protected]",
  "description": "Easy Reply is a powerful and convenient Gmail extension that simplifies the process of getting others to respond to your emails.",
  "name": "Easy Reply",
  "version": "1.66",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icons/icon.png",
      "19": "icons/icon.png",
      "32": "icons/icon.png",
      "38": "icons/icon.png"
    },
    "default_popup": "src/entries/popup/index.html"
  },
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "src/entries/contentScript/primary/main.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    },
    {
      "js": [
        "src/entries/contentScript/primary/content.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://mail.google.com/*",
    "https://easyreply.vercel.app/*",
    "https://app.easyreply.ai/*",
    "http://localhost:3000/*"
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icons/icon.png",
    "19": "icons/icon.png",
    "32": "icons/icon.png",
    "38": "icons/icon.png",
    "48": "icons/icon.png",
    "64": "icons/icon.png",
    "96": "icons/icon.png",
    "128": "icons/icon.png",
    "256": "icons/icon.png",
    "512": "icons/icon.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "resources": [
        "icons/icon.png"
      ]
    },
    {
      "resources": [
        "assets/src/entries/contentScript/primary/main-cfa7c237.js",
        "assets/button-e74c363a.js",
        "assets/icon-f198090f.png",
        "assets/AppStore-ab4e1d94.js",
        "assets/main-1d5ad180.css",
        "assets/button-13a49c8b.css"
      ],
      "matches": [
        "https://mail.google.com/*"
      ],
      "use_dynamic_url": true
    }
  ]
}