Free Email Tracker for Gmail by PandaDoc

Free Email Tracker for Gmail by PandaDoc

This Chrome extension lets you know immediately once your email has been opened by its recipient.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Free Email Tracker for Gmail by PandaDoc",
  "description": "This Chrome extension lets you know immediately once your email has been opened by its recipient.",
  "author": "PandaDoc",
  "version": "0.2.10",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "entry/content.js"
      ],
      "css": [
        "style/content.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.myemailtracker.com/installation/completed*"
      ],
      "js": [
        "entry/completed.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "entry/service_worker.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://mail.google.com/",
    "https://www.myemailtracker.com/"
  ],
  "manifest_version": 3,
  "action": {
    "default_popup": "/pages/popup.html",
    "default_icon": {
      "16": "/images/tracker16.png",
      "32": "/images/tracker32.png",
      "48": "/images/tracker48.png",
      "128": "/images/tracker128.png"
    }
  },
  "icons": {
    "16": "/images/tracker16.png",
    "32": "/images/tracker32.png",
    "48": "/images/tracker48.png",
    "128": "/images/tracker128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/fonts/Graphik-Bold-Cy-Web.woff",
        "/fonts/Graphik-Bold-Cy-Web.woff2",
        "/fonts/Graphik-Regular-Cy-Web.woff",
        "/fonts/Graphik-Regular-Cy-Web.woff2",
        "/fonts/Graphik-Semibold-Cy-Web.woff",
        "/fonts/Graphik-Semibold-Cy-Web.woff2",
        "/images/cog.svg",
        "/images/help.svg",
        "/images/not_tracked.svg",
        "/images/person.svg",
        "/images/sent_and_tracked.svg",
        "/images/tracked_and_opened.svg",
        "/images/tracker128.png",
        "/images/tracker16.png",
        "/images/tracker32.png",
        "/images/tracker48.png",
        "/images/tracking_active.svg",
        "/images/tracking_inactive.svg",
        "/pages/popup.html",
        "/style/content.css",
        "/style/popup.css",
        "pageWorld.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}