Pathmatics Explorer

Pathmatics Explorer

The Pathmatics Explorer extension gives you real-time advertising information for the top Advertisers and Publishers on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pathmatics Explorer",
  "version": "3.1.0",
  "description": "The Pathmatics Explorer extension gives you real-time advertising information for the top Advertisers and Publishers on the web.",
  "homepage_url": "https://explorer.pathmatics.com",
  "icons": {
    "128": "images/icon-app.png"
  },
  "options_page": "html/options.html",
  "browser_action": {
    "default_popup": "/html/popup.html",
    "default_icon": {
      "32": "images/icon-button.png",
      "48": "images/icon-button-48.png"
    }
  },
  "background": {
    "persistent": false,
    "scripts": [
      "js/jquery.js",
      "js/helpers.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.pathmatics.com/*",
        "https://*.sensortower.com/*"
      ],
      "js": [
        "js/content-pathmatics.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "https://*.pathmatics.com/",
    "https://*.sensortower.com/",
    "http://localhost:1903/",
    "identity"
  ],
  "incognito": "split"
}