Serviceware Knowledge Integrator

Serviceware Knowledge Integrator

Serviceware Knowledge 5 client in a browser extension: Access knowledge while using other websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_shortAppName__",
  "author": "SABIO GmbH",
  "version": "4.17.0",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "extension/resources/icons/icon-alert-16.png",
    "48": "extension/resources/icons/icon-alert-48.png",
    "128": "extension/resources/icons/icon-alert-128.png"
  },
  "browser_action": {
    "default_icon": "extension/resources/icons/icon-inactive-48.png",
    "default_popup": "popup/index.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "app/content-script.js"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "extension/background.js"
    ]
  },
  "web_accessible_resources": [
    "shared/resources/*",
    "page/*"
  ],
  "permissions": [
    "*://*/*",
    "alarms",
    "contextMenus",
    "tabs",
    "storage",
    "notifications",
    "identity",
    "unlimitedStorage"
  ],
  "manifest_version": 2,
  "minimum_chrome_version": "102",
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  }
}