Examine source code of PageProbe - Automatic Page Monitor

Inspect and view changes in PageProbe - Automatic Page Monitor source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "PageProbe - Automatic Page Monitor",
  "short_name": "PageProbe",
  "version": "1.38.1",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "Create automatic monitors for detecting and scanning changes on web pages.",
  "icons": {
    "16": "images/pageprobe-16.png",
    "48": "images/pageprobe-48.png",
    "64": "images/pageprobe-64.png",
    "128": "images/pageprobe-128.png"
  },
  "homepage_url": "https://nodetics.com/pageprobe",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/",
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/cssselector.js",
        "js/content.js",
        "js/cron.js",
        "js/inject.js",
        "js/util.js",
        "js-lib/jsonpath-plus.min.js"
      ],
      "css": [
        "css/pageprobe.css"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "images/pageprobe-48.png",
    "default_title": "PageProbe"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{9c267187-2207-4f94-8b7d-aa2fd06b8587}"
    }
  }
}