Sidebar API for extensions is now live! #95
Replies: 11 comments 15 replies
-
Hi there, On what Microsoft Edge version is this live? Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hi @stefanvd, We will look into this and let you know as soon as possible. Thank you |
Beta Was this translation helpful? Give feedback.
-
@scottkuhl We are looking into this and will let you know as soon as possible. |
Beta Was this translation helpful? Give feedback.
-
Hi All, Sidebar should work for Edge Canary version 115+ and this has bug has been reported to our team. We will let you know any update as soon as possible. |
Beta Was this translation helpful? Give feedback.
-
Finally, I can confirm it too in Canary version 119.0.2124.0. See my Note Sidebar for Microsoft Edge extension ![]() |
Beta Was this translation helpful? Give feedback.
-
Hey everyone, we have noticed two issues with the
|
Beta Was this translation helpful? Give feedback.
-
I have created edge extension with side panel to show tab specific data but same data getting reflected to all the tabs containing side panel. Expected : Side panel should show tab specific data. Example: I have created Sample Extension that displays URL of the page in side panel. Issue: Seeing same URL in all the tabs side panel. Expected Samples: Current Samples: Code samples Steps, I followed to implement side panel follows below, Step 1: "permissions": ["sidePanel", "tabs"] Step 2: Allows users to open the side panel by clicking on the action toolbar icon chrome.sidePanel .setPanelBehavior({ openPanelOnActionClick: true }) .catch((error) => console.error(error)); chrome.tabs.onUpdated.addListener(async (tabId, info, tab) => { if (!tab.url) return; const url = new URL(tab.url); await chrome.sidePanel.setOptions({
}); }); |
Beta Was this translation helpful? Give feedback.
-
I've added a ticket in the w3c webextensions working group to clarify intended per-tab sidePanel behavior on creating a new tab/navigating: w3c/webextensions#588 Could someone from the MS Edge team clarify if the difference with Chrome is an expected difference or a bug? |
Beta Was this translation helpful? Give feedback.
-
Any one know how to set the default sidebar width in Edge? |
Beta Was this translation helpful? Give feedback.
-
I have researched on browser extension Sidebars.
Edge
- Edge is using default Sidebar
- No customization available.
- It will create same sidebar to all the tabs.
Chrome
- Customization available
- we can customize our own Sidebar.
- we can create different Sidebar for each tabs.
…On Sat, 22 Feb, 2025, 13:40 Xinlu Lai, ***@***.***> wrote:
Any one know how to set the default sidebar width in Edge?
I find it is slower than Chrome, but in Chrome you can memory the width,
in Edge it not work.
Just search Super2Brain extension for test.
—
Reply to this email directly, view it on GitHub
<#95 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AR5P2ZPTP4PBGDDBCZNK4DL2RAWHTAVCNFSM6AAAAABXUXXI2CVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTEMRYGQZTONY>
.
You are receiving this because you commented.Message ID:
<microsoft/MicrosoftEdge-Extensions/repo-discussions/95/comments/12284377@
github.com>
|
Beta Was this translation helpful? Give feedback.
-
Hi everyone, However, when I run the same extension in Microsoft Edge, the side panel width appears to be fixed, and I’m unable to extend it. This results in parts of my UI being cut off or not displaying properly. Is this a known limitation in Edge, or is there a workaround to control the side panel width like in Chrome? I’d appreciate any input or if anyone else has encountered the same issue. Thanks! |
Beta Was this translation helpful? Give feedback.
-
Hello GitHub Fam!
Microsoft Edge Add-Ons has now introduced a Sidebar API for extensions.
By using the Sidebar API for extensions, you can enhance the browsing experience by enabling users to view additional information alongside the main content of a webpage.
The sidebar is a persistent pane located on the side of the browser, which coexists with the primary content of the browser. The sidebar reduces the need to constantly switch between tabs, resulting in a more productive browsing experience.
To learn more about this API, please refer to the documentation below:
Extensions in the Microsoft Edge sidebar - Microsoft Edge Development | Microsoft Learn
Your feedback and suggestions are always welcome here.
Beta Was this translation helpful? Give feedback.
All reactions