You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-06 23:56:13 +02:00
7 lines
175 B
JavaScript
7 lines
175 B
JavaScript
|
|
const getActiveTabs = async (browser) => {
|
|
const options = { active: true, currentWindow: true };
|
|
return await browser.tabs.query(options);
|
|
}
|
|
|
|
export default getActiveTabs; |