runtime.openOptionsPage()
假如你的页面有options page(设置页面)的定义,使用此方法打开它。这是一个异步方法,返回一个 Promise
对象。
语法
var openingPage = browser.runtime.openOptionsPage()
参数
无
返回值
浏览器兼容性
BCD tables only load in the browser
示例
当用户点击浏览器行为图标时,打开一个设置页面。
function onOpened() {
console.log(`Options page opened`);
}
function onError(error) {
console.log(`Error: ${error}`);
}
var opening = browser.runtime.openOptionsPage();
opening.then(onOpened, onError);
Example extensions
备注: This API is based on Chromium's chrome.runtime
API. This documentation is derived from runtime.json
in the Chromium code.
Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.