PageProbe - Automatic Page Monitor

PageProbe - Automatic Page Monitor

Create automatic monitors for detecting and scanning changes on web pages, evaluate content based on conditions you define and trigger actions such as notifications, sounds, emails etc.

Merlin
Additional files are visible only to premium users

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}"
    }
  }
}