本文整理汇总了TypeScript中webextension-polyfill-ts.browser.windows.getCurrent方法的典型用法代码示例。如果您正苦于以下问题:TypeScript browser.windows.getCurrent方法的具体用法?TypeScript browser.windows.getCurrent怎么用?TypeScript browser.windows.getCurrent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类webextension-polyfill-ts.browser.windows
的用法示例。
在下文中一共展示了browser.windows.getCurrent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: async
export const main = async (sendTabID: number): Promise<void> => {
const windows: browser.windows.Window[] = await browser.windows.getAll({populate: true});
const current: browser.windows.Window = await browser.windows.getCurrent();
let count: number = 1;
const openWindowsElement: HTMLElement = utils.queryOrThrow('#open-windows');
const t: browser.tabs.Tab = await browser.tabs.get(sendTabID);
if (windows.length === 1) {
const h1: HTMLElement = document.createElement('h1');
h1.innerText = 'No other open windows';
openWindowsElement.appendChild(h1);
}
windows.forEach((w: browser.windows.Window): void => {
if (w.id === current.id) {
return;
}
const windowNum = count.toString();
utils.queryOrThrow('body').addEventListener(
'keydown',
(e: KeyboardEvent) => {
if (e.key === windowNum) {
moveTabToWindow(w, t);
}
}
);
if (w.tabs) {
const div: HTMLDivElement = document.createElement('div');
div.className = 'screenshot';
div.innerHTML = `<div class="title-bar"> <img src="${w.tabs[0].favIconUrl}"/>
<div class="screen-title">${w.tabs[0].title}</div></div>
<div class="screen-index">${count}</div>
<div class="tab-count">${w.tabs.length + (w.tabs.length === 1 ? " tab" : " tabs")}
</div>`;
div.addEventListener('click', (): void => {
moveTabToWindow(w, t);
});
openWindowsElement.appendChild(div);
}
count++;
});
utils.queryOrThrow('#current-tab').innerHTML = `<div class="title-bar"><img src="${t.favIconUrl}"/>` +
`<div class="screen-title">${t.title}</div></div>`;
};