Exoprise Service Watch

Exoprise Service Watch

Exoprise Service Watch extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "version": "0.1.175",
  "manifest_version": 3,
  "description": "__MSG_appDescription__",
  "options_page": "html/options.html",
  "action": {
    "default_icon": {
      "16": "images/swmb-16x16t.png",
      "24": "images/swmb-24x24t.png",
      "32": "images/swmb-32x32t.png",
      "48": "images/swmb-48x48t.png",
      "128": "images/swmb-128x128t.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "images/swmb-16x16t.png",
    "24": "images/swmb-24x24t.png",
    "32": "images/swmb-32x32t.png",
    "48": "images/swmb-48x48t.png",
    "128": "images/swmb-128x128t.png"
  },
  "permissions": [
    "activeTab",
    "alarms",
    "storage",
    "webRequest",
    "scripting",
    "nativeMessaging"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/popup.js",
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/observer.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/reload-32.png"
      ],
      "extension_ids": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://secure.exoprise.com/*",
      "https://thumper.exoprise.com/*"
    ]
  },
  "default_locale": "en",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}