PR Monkey: Email Tracking & Pitching Insights

PR Monkey: Email Tracking & Pitching Insights

Share your experts and monitor media efforts in Gmail and beyond.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Share your experts and monitor media efforts in Gmail and beyond.",
  "version": "1.7.0",
  "manifest_version": 3,
  "name": "PR Monkey: Email Tracking & Pitching Insights",
  "icons": {
    "128": "prm-icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "128": "prm-icon-128.png"
    },
    "default_title": "PR Monkey"
  },
  "permissions": [
    "cookies",
    "storage",
    "scripting",
    "tabs",
    "activeTab",
    "gcm",
    "notifications"
  ],
  "host_permissions": [
    "*://mail.google.com/",
    "*://prmonkey.com/*",
    "*://www.prmonkey.com/*",
    "*://prm.so/*",
    "*://www.prm.so/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*",
        "*://prmonkey.com/*",
        "*://www.prmonkey.com/*",
        "*://prm.so/*",
        "*://www.prm.so/*"
      ],
      "js": [
        "gmailContentScript.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://prmonkey.com/*",
      "https://www.prmonkey.com/*",
      "https://app.prmonkey.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.svg",
        "*.woff2",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}