Hudu Chrome Extension

Hudu Chrome Extension

Hudu Chrome Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hudu Chrome Extension",
  "description": "Hudu Chrome Extension",
  "version": "2.2.1",
  "manifest_version": 3,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "scripting",
    "commands"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "action": {
    "default_icon": "icon128.png",
    "default_popup": "index.html?module=popup"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+I"
      },
      "description": "Open Hudu popup"
    }
  },
  "background": {
    "service_worker": "backgroundScript.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/createModulesContainers.js",
        "contentScript.js"
      ],
      "css": [
        "contentCSS.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "js": [
        "scripts/haloSetTriggers.js"
      ],
      "css": [
        "haloStyles.css"
      ],
      "matches": [
        "https://*.halopsa.com/*"
      ]
    },
    {
      "js": [
        "scripts/syncroSetTriggers.js"
      ],
      "matches": [
        "https://*.syncromsp.com/*"
      ]
    },
    {
      "js": [
        "scripts/autotaskSetTriggers.js"
      ],
      "matches": [
        "https://*.autotask.net/*"
      ]
    },
    {
      "js": [
        "scripts/ninjaSetTriggers.js"
      ],
      "matches": [
        "https://*.ninjarmm.com/*"
      ]
    }
  ]
}