Copilot Launcher Button

Copilot Launcher Button

A very simple launcher that adds a Copilot button to the toolbar. When you click the button, the Microsoft Copilot website will open in a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Copilot Button",
  "version": "1.0",
  "description": "Adds a Copilot button to the toolbar",
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Open Copilot"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{60c188fb-b478-41f1-944f-f1352370df76}"
    }
  }
}