Copilot by Global Technology

Copilot by Global Technology

Microsoft Copilot sidebar ported from Edge to Chrome by Global Ops

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Copilot by Global Technology",
  "description": "Microsoft Copilot sidebar ported from Edge to Chrome by Global Ops",
  "version": "1.0.0",
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Click to open Bing Chat Enterprise"
  },
  "side_panel": {
    "default_path": "sidepanel/index.html"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "sidePanel",
    "declarativeNetRequest",
    "tabs",
    "notifications"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_bing",
        "enabled": true,
        "path": "rules/bing.json"
      }
    ]
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Command+Shift+K"
      }
    }
  }
}