Draw & GO

Draw & GO

Draw & GO can help automate all daily routines with your devices by recording and playing back macros using the graphical key.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "0.4.2396",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "default_locale": "en",
  "homepage_url": "https://drawgo.azurewebsites.net",
  "background": {
    "service_worker": "BackgroundWorker.js",
    "type": "module"
  },
  "side_panel": {
    "default_path": "sidePanel.html"
  },
  "action": {},
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "host_permissions": [
    "https://drawgo.azurewebsites.net/api/*"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "framework/*",
        "content/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "recorderInjector.js",
        "macroPlayer.js"
      ]
    }
  ],
  "permissions": [
    "identity",
    "storage",
    "scripting",
    "tabs",
    "windows",
    "sidePanel"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}