StratusLINK

StratusLINK

StratusLINK

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "StratusLINK",
  "version": "2.11.5",
  "description": "StratusLINK",
  "icons": {
    "128": "favicon.png"
  },
  "background": {
    "page": "./views/background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./scripts/content.js"
      ],
      "exclude_matches": [
        "https://pwa.spectrumvoip.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "./views/options.html",
    "open_in_tab": false
  },
  "permissions": [
    "background",
    "storage",
    "tabs",
    "contextMenus",
    "http://*/",
    "https://*/"
  ],
  "browser_action": {
    "default_icon": "favicon.png",
    "default_popup": "./views/popup.html"
  },
  "manifest_version": 2
}