36bf38a92c
- manifest.opera.json mit Service Worker und Content Script fuer Opera GX Speed Dial - src/js/opera/background.js und redirect.js fuer Tab-Uebernahme - manifest.firefox.json auf Manifest V3 migriert mit Gecko-ID - Fonts von Google Fonts API auf lokale WOFF2-Dateien umgestellt (DSGVO) - Extension-Icons aktualisiert - SECURITY.md und DISCLAIMER.md ueberarbeitet
6 lines
182 B
JavaScript
6 lines
182 B
JavaScript
(function() {
|
|
const dashboardUrl = chrome.runtime.getURL("newtab.html");
|
|
if (window.location.href !== dashboardUrl) {
|
|
window.location.href = dashboardUrl;
|
|
}
|
|
})(); |