Save Email Template powered by SendPulse

Save Email Template powered by SendPulse

Save any Gmail™ email as a PDF, PNG or HTML template in one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_title__",
  "short_name": "__MSG_extension_short_title__",
  "description": "__MSG_extension_description__",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "48": "static/images/icons/48.png",
    "128": "static/images/icons/128.png"
  },
  "background": {
    "service_worker": "js/background.min.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "js/gmail_inbox_extension.min.js"
      ],
      "all_frames": false
    }
  ],
  "host_permissions": [
    "*://*.sendpulse.com/*",
    "*://*.sendpulse.ua/*",
    "*://*.sendpulse.tr/*",
    "*://*.sendpulse.test/*",
    "*://*.mail.google.com/*",
    "*://*.inbox.google.com/*",
    "*://*.googleusercontent.com/*",
    "*://*.google.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/images/icons/48.png",
        "static/images/icons/128.png",
        "static/images/icons/button.svg",
        "static/css/app.css",
        "static/images/list-icons/icon_html.svg",
        "static/images/list-icons/icon_img.svg",
        "static/images/list-icons/icon_mailchimp.svg",
        "static/images/list-icons/icon_pdf.svg",
        "static/images/list-icons/icon_sendpulse.svg",
        "static/images/list-icons/icon_logout.svg",
        "static/images/icons/loading.svg",
        "static/font/nunitosans-bold.ttf",
        "static/font/nunitosans-bold.woff",
        "static/font/nunitosans-bold.woff2",
        "static/font/nunitosans-extrabold.ttf",
        "static/font/nunitosans-extrabold.woff",
        "static/font/nunitosans-extrabold.woff2",
        "static/font/nunitosans-italic.ttf",
        "static/font/nunitosans-italic.woff",
        "static/font/nunitosans-italic.woff2",
        "static/font/nunitosans-regular.ttf",
        "static/font/nunitosans-regular.woff",
        "static/font/nunitosans-regular.woff2",
        "static/images/icons/icon-save.svg",
        "static/images/chrome-extension.png",
        "static/images/screen.gif",
        "static/images/head-bg.png",
        "static/images/icons/icon-star.svg",
        "static/images/icons/icon-star-active.svg",
        "static/rating.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "static/start.html"
  },
  "permissions": [
    "tabs",
    "downloads",
    "storage",
    "identity"
  ],
  "minimum_chrome_version": "88",
  "version": "2.0.0",
  "version_name": "2.0.0"
}