Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Apr 03, 2025.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Copilot sidebar for Chrome", "description": "Microsoft Copilot sidebar ported from Edge to Chrome", "version": "1.9.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 sidebar" }, "side_panel": { "default_path": "sidepanel\/index.html" }, "host_permissions": [ "<all_urls>" ], "permissions": [ "sidePanel", "declarativeNetRequest", "tabs", "notifications" ], "content_scripts": [ { "js": [ "shell\/inject.js" ], "matches": [ "https:\/\/*.bing.com\/edgesvc\/shell*" ], "run_at": "document_start", "all_frames": true, "world": "MAIN" }, { "js": [ "libs\/pdf.min.js", "content-script.js" ], "matches": [ "<all_urls>" ] } ], "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" } } } }