This post briefly announces my Chrome/FireFox Extension for Confluence.
Updated 2026-05-08
Personal Blog where I share my professional learnings. Oriented towards productivity tricks including AutoHotkey, Microsoft Office 365 (Microsoft Teams, Microsoft Outlook, Excel, Word, SharePoint, OneDrive), VBA, books, Blogger, Jira, Confluence, Power BI,...
This is a recurring question I always have to look out: How to view the source code of a Chrome Extension?
chrome.tabs.query({"active": true, "lastFocusedWindow": true}, function (tabs) {
chrome.tabs.remove(tabs[0]);
});
The drawback of this solution is that it won't close the Chrome window if it is the last tab to be closed.