Walles.AI - Free AI Copilot

Walles.AI - Free AI Copilot

Free AI Assistant. Supports GPT-4. Immersive translation. Answers complex questions. Comprehends long texts. Supports Notion

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Walles.AI - Free AI Copilot",
  "description": "Free AI Assistant. Supports GPT-4. Immersive translation. Answers complex questions. Comprehends long texts. Supports Notion",
  "version": "1.1.9",
  "manifest_version": 3,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "activeTab",
    "cookies",
    "storage",
    "unlimitedStorage",
    "tabs",
    "sidePanel",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess"
  ],
  "side_panel": {
    "default_path": "sidePanel.html"
  },
  "optional_permissions": [
    "background"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "options_ui": {
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "shared.js",
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "logo.png",
        "content-script.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      }
    }
  }
}