Distill Web Monitor

Distill Web Monitor

Monitor website changes and get SMS, email or push notifications on change.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "short_name": "Distill",
  "version": "3.6.12",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "48": "ui/img/distill_48.png",
    "128": "ui/img/distill_128.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "ui/img/distill_19.png",
      "38": "ui/img/distill_38.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "ui/popup.html"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content/port-loader.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "content/auth.js"
      ],
      "matches": [
        "http://*.distill.local/*",
        "https://*.distill.local/*",
        "https://*.distill.io/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "contextMenus",
    "*://*/*",
    "idle",
    "notifications",
    "storage",
    "tabs",
    "unlimitedStorage"
  ],
  "optional_permissions": [],
  "web_accessible_resources": [
    "content/*",
    "lib/*",
    "ui/img*",
    "ui/lib/*",
    "ui/htmlselector.html",
    "ui/htmlselector.js"
  ],
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{7a73dc4b-1b38-40e7-ac56-7d356dd4af34}"
    }
  }
}