Nexthink Amplify

Nexthink Amplify

Browser extension for ITSM solutions to assist L1 agents in faster ticket handling.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nexthink Amplify",
  "description": "Browser extension for ITSM solutions to assist L1 agents in faster ticket handling.",
  "version": "1.12.1",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvDegPGuU/kJfR3ILJfBZltWabtRN8jUnczYujYFU48KHX3RNPle6c/S2BhxnTjx77mfg+aqLe3eSe0+yWzHzhpb3sUCmLHJijWPNBkKohiaNR6vK7BSINZGAjXZgYJWwldNhEWf1yBovwKkT1LDNazuSbiX+DoNl90I5sev3EH74tP+KWdEFLsoipogp8x5yxVwmupnsYrqmCWQudlRJQAFGSWc5oNjlJCwSjNvHLFEOoUghZLh4TiiI712OHh757IEI2MOw0BuuY0lonGRs3vEc0XRGScMnKKNdkhC7yFXNjzNWEWQAkDZ/OcGCkGSxmVjhuJOPSwnFfA0HxHFweQIDAQAB",
  "manifest_version": 3,
  "action": {
    "default_title": "Nexthink Amplify",
    "default_icon": {
      "16": "/images/nexthink-logo_16.png",
      "32": "/images/nexthink-logo_32.png",
      "48": "/images/nexthink-logo_48.png",
      "128": "/images/nexthink-logo_128.png"
    }
  },
  "permissions": [
    "activeTab",
    "scripting",
    "tabs",
    "storage",
    "contextMenus",
    "identity"
  ],
  "storage": {
    "managed_schema": "schema.json"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "/images/nexthink-logo_16.png",
    "32": "/images/nexthink-logo_32.png",
    "48": "/images/nexthink-logo_48.png",
    "128": "/images/nexthink-logo_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "element-selector.html",
        "/images/*",
        "extension-popup.html",
        "toastPopup.html",
        "loginPopup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/main.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/framesContentScript.js"
      ],
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.nexthink.cloud/*"
    ]
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+P",
        "mac": "Command+Shift+P",
        "linux": "Alt+P"
      }
    },
    "lookup-in-amplify": {
      "suggested_key": {
        "windows": "Alt+S",
        "mac": "Command+Shift+S",
        "linux": "Alt+S"
      },
      "description": "Lookup device or user in Amplify"
    }
  },
  "content_security_policy": {
    "extension_pages": "default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; connect-src https://*.nexthink.cloud;"
  }
}