Walle - AI Copilot ChatBot for ChatGPT

Walle - AI Copilot ChatBot for ChatGPT

Walle Your All-in-One AI Assistant and Browser Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Walle - AI Copilot ChatBot for ChatGPT",
  "description": "Walle Your All-in-One AI Assistant and Browser Extension",
  "version": "1.0.5",
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  },
  "commands": {
    "toggle": {
      "suggested_key": {
        "default": "Ctrl+E",
        "mac": "Command+E"
      },
      "description": "Open Walle."
    }
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "side_panel": {
    "default_path": "index.html"
  },
  "icons": {
    "16": "images/favicon.png",
    "48": "images/Icon-192.png",
    "128": "images/Icon-192.png"
  },
  "action": {
    "default_icon": {
      "16": "images/favicon.png",
      "48": "images/Icon-192.png",
      "128": "images/Icon-192.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "Readability.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "icon.png",
        "main.dart.js",
        "/images/app.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "insert.js"
      ],
      "matches": [
        "https://ant-design.antgroup.com/*"
      ]
    }
  ],
  "manifest_version": 3,
  "host_permissions": [],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}