Voilà – AI-powered assistant

Voilà – AI-powered assistant

Voilà is a powerful assistant designed to level up your productivity and help you with your everyday tasks. Get things done with a simple keyboard shortcut – Improve your writing, get answers to all your questions and draft high-quality content.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Voilà – AI ChatGPT powered assistant",
  "short_name": "Voilà",
  "description": "AI assistant for supercharged productivity",
  "permissions": [
    "storage",
    "contextMenus",
    "tabs",
    "<all_urls>",
    "*://*/*",
    "alarms"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "omnibox": {
    "keyword": "voila"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "commands": {
    "open": {
      "suggested_key": {
        "default": "Alt+W"
      },
      "description": "Open AI 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": [
    "js/gmail-js-loader.js",
    "js/gmail-extension.js",
    "assets/*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'; worker-src 'self';",
  "version": "1.5.3",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  },
  "browser_action": {
    "default_title": "Voila",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  }
}