Voilà – AI ChatGPT powered assistant

Voilà – AI ChatGPT powered assistant

AI assistant for supercharged productivity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Voilà – AI ChatGPT powered assistant",
  "short_name": "Voilà",
  "description": "AI assistant for supercharged productivity",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "tabs",
    "alarms"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "omnibox": {
    "keyword": "voila"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "commands": {
    "open": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      },
      "description": "Open Voilà assistant"
    }
  },
  "content_scripts": [
    {
      "css": [
        "css/content-script.css"
      ],
      "js": [
        "js/content-script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    },
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "all_frames": false,
      "run_at": "document_start",
      "js": [
        "assets/js/d-contentscript.js"
      ]
    },
    {
      "matches": [
        "*://mail.google.com/*",
        "*://*.mail.google.com/*"
      ],
      "js": [
        "js/gmail-injector.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*/owa/*",
        "*://outlook.live.com/mail/*",
        "*://outlook.office.com/mail/*",
        "*://outlook.office365.com/mail/*"
      ],
      "js": [
        "js/outlook-injector.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "js/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self';"
  },
  "action": {
    "default_title": "Voila",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "1.5.3"
}