Marketo Insights for Google Chrome™

Marketo Insights for Google Chrome™

Send sales emails with Marketo, view lead and organization information, and follow activities as they occur in real time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Marketo Insights for Google Chrome™",
  "version": "0.1.36.12",
  "description": "Send sales emails with Marketo, view lead and organization information, and follow activities as they occur in real time.",
  "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDEGQBz2JiVDKjeEhgAaOfSTFwyyV9V37JLAV/WqGDFcoZZi2jj7bqdZWJ22RKIrE8eEgf0Az+2fHtz+A9shHGhFDMtaCOHh07Awmsbf/HOZYOPjO9bSbuKHg+utvvUCJzMrYhwblQpiOgDSNyUxsU62P13XSr/aQNy3NJMxhOuzwIDAQAB",
  "background": {
    "service_worker": "/dist/background.js",
    "type": "module"
  },
  "oauth2": {
    "client_id": "911172806203-r272rc2ln2dg54nngnb64t06246tdd7e.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/gmail.modify"
    ]
  },
  "action": {
    "default_icon": {
      "38": "images/chromeicon.png"
    },
    "default_title": "Marketo Insights For Google Chrome™",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "dist/contentscript.js"
      ],
      "matches": [
        "*://mail.google.com/mail*"
      ]
    }
  ],
  "minimum_chrome_version": "93",
  "permissions": [
    "identity",
    "identity.email",
    "storage",
    "unlimitedStorage",
    "alarms"
  ],
  "host_permissions": [
    "http://*.marketo.com/*",
    "https://*.marketo.com/*",
    "http://*.mktoapi.com/*",
    "https://*.mktoapi.com/*"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "options_page": "options.html",
  "icons": {
    "48": "images/mkto-48.png",
    "128": "images/mkto-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "mkto-gmail.css",
        "mkto-popup.css"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "manifest_version": 3
}