feat(compat): Opera GX Workaround, Firefox MV3, lokale Fonts und Icon-Update

- 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
This commit is contained in:
2026-03-21 19:08:03 +01:00
parent b430b67df9
commit 36bf38a92c
16 changed files with 154 additions and 8 deletions
+6
View File
@@ -0,0 +1,6 @@
(function() {
const dashboardUrl = chrome.runtime.getURL("newtab.html");
if (window.location.href !== dashboardUrl) {
window.location.href = dashboardUrl;
}
})();