Sidebar API for extensions is now live! #95
Replies: 8 comments 13 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.
-
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