Gets a URL to the HTML document that defines the sidebar's contents.
This is an asynchronous function that returns a
Promise
.
var gettingPanel = browser.sidebarAction.getPanel(
details
// object
)
details
对象
. An object with the following properties:
tabId
可选
integer
. Get the panel for the sidebar specific to the given tab.
windowId
可选
integer
. Get the panel for the sidebar specific to the given window.
windowId
and
tabId
are both supplied, the function fails and the promise it returns is rejected.
windowId
and
tabId
are both omitted, the global panel is returned.
A
Promise
that will be fulfilled with a string containing the URL for the panel's document. This will be a fully qualified URL, such as:
moz-extension://d1d8a2eb-fe60-f646-af30-a866c5b39942/sidebar.html
BCD tables only load in the browser
Get the panel's URL:
function onGot(sidebarUrl) {
console.log(sidebarUrl);
}
var gettingPanel = browser.sidebarAction.getPanel({});
gettingPanel.then(onGot);
注意:
This API is based on Opera's
chrome.sidebarAction
API。
Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.
最后修改: , 由 MDN 贡献者