Voila – AI Assistant, Copilot and AI Writer

Seamless personal AI assistant powered by GPT-4o to help you create, write, summarize, brainstorm, and research on any website.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "short_name": "Voila",
  "default_locale": "en",
  "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"
    }
  },
  "version": "1.7.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}