本文整理汇总了TypeScript中webextension-polyfill-ts.browser.windows.getAll方法的典型用法代码示例。如果您正苦于以下问题:TypeScript browser.windows.getAll方法的具体用法?TypeScript browser.windows.getAll怎么用?TypeScript browser.windows.getAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类webextension-polyfill-ts.browser.windows
的用法示例。
在下文中一共展示了browser.windows.getAll方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: async
export const explodeWindow = async (): Promise<void> => {
const windows: browser.windows.Window[] = await browser.windows.getAll({populate: true});
windows.forEach((w: browser.windows.Window): void => {
if (!w.tabs) {
return;
}
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);
});
});
});
};