本文整理汇总了TypeScript中webextension-polyfill-ts.browser.windows.create方法的典型用法代码示例。如果您正苦于以下问题:TypeScript browser.windows.create方法的具体用法?TypeScript browser.windows.create怎么用?TypeScript browser.windows.create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类webextension-polyfill-ts.browser.windows
的用法示例。
在下文中一共展示了browser.windows.create方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: async
export const popTab = async (): Promise<void> => {
const w: browser.windows.Window = await browser.windows.getCurrent({populate:true});
if (w.tabs && w.tabs.length !== 1) {
const t: browser.tabs.Tab = await utils.tabs.getCurrent();
browser.windows.create({tabId: t.id}).catch((e: Error): void => {
logging.error(e.message);
});
browser.tabs.update(t.id, {pinned: t.pinned}).catch((e: Error): void => {
logging.error(e.message);
});
}
};
示例2:
w.tabs.forEach((t: browser.tabs.Tab): void => {
const width: number = Math.floor(Math.random() * (screen.width * 0.75) + 1);
const height: number = Math.floor(Math.random() * (screen.height * 0.75) + 1);
const left: number = Math.floor(Math.random() * (screen.width - width) + 1);
const top: number = Math.floor(Math.random() * (screen.height - height) + 1);
browser.windows.create({
tabId: t.id,
width,
height,
left,
top,
}).catch((e: Error): void => {
logging.error(e.message);
});
});