ConversAI

ConversAI

Respond to anything in one click with your personal AI chat assistant.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "2.1.2",
  "manifest_version": 3,
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhyPtITLLFY6ptLLHDgoCQk0NJOxVtyeLggL+PJWbiwyAGxer7eimd4x5/w8XNCKHdg0k4RW8Bjew2qwNV3rlTyxQGhGoeuqmekjotce9BWij6kg4L+dOVAsca85va5/7Qkb2MBCYzhOPp4N8s+GqhewGh4gOEKkgO2OIjcLEFAmSeNCvAogC/ZqrYkB4Bb6RCwPI/hMW/ghr2J2cD44JtOCxD0lGP1NsdKadoR9wrC2Np7cokYaiJCX1Q26Rg6J5x3EbDGzDNp7L88svYnwW6lUaCTQwQJjhIZ3+lIV88prATbFt8/l6oCbBaFfBwj6VHgNw5XGY0b1fEc1BFyMb8QIDAQAB",
  "permissions": [
    "contextMenus",
    "storage",
    "identity"
  ],
  "host_permissions": [
    "https://*.conversai.co/*"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+C"
      }
    }
  },
  "action": {},
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "file:///*",
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "options.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}