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
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Hellion Dashboard (GX Native)",
|
|
"version": "1.5.2",
|
|
"description": "Ersetzt die Opera GX Startseite durch dein persönliches, leistungsoptimiertes Hellion Dashboard. Schnell, sauber und werbefrei.",
|
|
"author": "Hellion Online Media - Florian Wathling",
|
|
"homepage_url": "https://hellion-media.de",
|
|
|
|
"permissions": [
|
|
"tabs",
|
|
"storage",
|
|
"bookmarks"
|
|
],
|
|
|
|
"background": {
|
|
"service_worker": "src/js/opera/background.js"
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://*.opera.com/startpage*",
|
|
"http://*.opera.com/startpage*"
|
|
],
|
|
"js": ["src/js/opera/redirect.js"],
|
|
"run_at": "document_start",
|
|
"all_frames": true
|
|
}
|
|
],
|
|
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": ["assets/fonts/*.woff2"],
|
|
"matches": ["<all_urls>"]
|
|
}
|
|
],
|
|
|
|
"action": {
|
|
"default_title": "Hellion Dashboard"
|
|
},
|
|
|
|
"icons": {
|
|
"16": "assets/icons/icon16.png",
|
|
"48": "assets/icons/icon48.png",
|
|
"128": "assets/icons/icon128.png"
|
|
}
|
|
} |