Email Testing & Email Preview - Inbox Pirates

Email Testing & Email Preview - Inbox Pirates

Email Preview Testing on various screen sizes, mobile phones on Outlook, Gmail, Yahoo, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Email Testing & Email Preview - Inbox Pirates",
  "short_name": "Inbox Pirates",
  "version": "1.9",
  "author": "Bharadwaj Giridhar <[email protected]>",
  "description": "Email Preview Testing on various screen sizes, mobile phones on Outlook, Gmail, Yahoo, and more.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "dist/gmail.js"
      ],
      "css": [
        "dist/style.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://app.apollo.io/*"
      ],
      "js": [
        "dist/apollo.js"
      ],
      "css": [
        "dist/style.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://my.sendinblue.com/*"
      ],
      "js": [
        "dist/sendinblue.js"
      ],
      "css": [
        "dist/style.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.admin.mailchimp.com/campaigns/*"
      ],
      "js": [
        "dist/mailchimp.js"
      ],
      "css": [
        "dist/style.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://app.snov.io/*"
      ],
      "js": [
        "dist/snovio.js"
      ],
      "css": [
        "dist/style.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.hubspot.com/email/*/edit/*/preview"
      ],
      "js": [
        "dist/hubspot.js"
      ],
      "all_frames": true,
      "css": [
        "dist/style.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.outplayhq.com/*"
      ],
      "js": [
        "dist/outplay.js"
      ],
      "all_frames": true,
      "css": [
        "dist/style.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/popupbg.js"
      ],
      "css": [
        "dist/popupbg.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/gmail.js",
        "dist/apollo.js",
        "dist/sendinblue.js",
        "dist/mailchimp.js",
        "dist/popups.js",
        "dist/hubspot.js",
        "dist/snovio.js",
        "dist/outplay.js",
        "dist/popupbg.js",
        "icon16.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "dist/popup.html",
    "default_icon": "icon16.png",
    "default_title": "Inbox Pirates Email Preview"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ]
}