Devolutions Workspace

Devolutions Workspace

Form filler that obtains entries from Remote Desktop Manager, Devolutions Server and Devolutions Hub Business / Personal

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Devolutions Workspace",
  "short_name": "Workspace",
  "default_locale": "en_US",
  "description": "__MSG_DWLDescription__",
  "version": "2024.1.1.1",
  "browser_action": {
    "default_popup": "popup/index.html",
    "default_title": "Devolutions Workspace",
    "default_icon": {
      "16": "assets/workspace/ws-16px-c.png",
      "32": "assets/workspace/ws-32px-c.png"
    }
  },
  "icons": {
    "16": "assets/workspace/ws-16px-c.png",
    "32": "assets/workspace/ws-32px-c.png",
    "128": "assets/workspace/ws-128px-c.png"
  },
  "background": {
    "page": "background/background.html",
    "persistent": true
  },
  "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'",
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "nativeMessaging",
    "unlimitedStorage",
    "cookies",
    "idle",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "content-script/autofill.js",
        "content-script/autofiller.js",
        "content-script/save-dialog-notification.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    "webui/index.html",
    "content-script/assets/*"
  ],
  "storage": {
    "managed_schema": "schema.json"
  },
  "commands": {
    "AutoFill": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "__MSG_DWLAutofillCommandDescription__"
    },
    "Refresh": {
      "suggested_key": {
        "default": "Alt+L",
        "mac": "Command+Shift+L"
      },
      "description": "Refresh"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Z",
        "mac": "Command+Shift+Z"
      }
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}