Files
BridgeSwarm/extension/options.js
T
Raven Scott 515b946cc9
CI / Build & Test (push) Has been cancelled
Add updated UI
2026-07-27 00:00:48 -04:00

20 lines
658 B
JavaScript

/**
* Options entry → Control Center Settings (single settings experience).
*/
(function () {
const browser = typeof chrome !== 'undefined' && chrome.runtime ? chrome : typeof browser !== 'undefined' ? browser : chrome;
const url = browser.runtime.getURL('dashboard.html#settings');
// Prefer replacing the options tab with the full dashboard
if (browser.tabs?.create && browser.tabs?.getCurrent) {
browser.tabs.getCurrent((tab) => {
if (tab?.id != null && browser.tabs.update) {
browser.tabs.update(tab.id, { url });
} else {
location.replace(url);
}
});
} else {
location.replace(url);
}
})();