Dark Mode for TryHackMe

Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.

Was ist Dark Mode for TryHackMe?

Dark Mode for TryHackMe ist eine Chrome-Erweiterung, die von https://innaton.com entwickelt wurde, und ihr Hauptmerkmal ist "Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.".

Erweiterungsscreenshots

screenshot
screenshot

Dark Mode for TryHackMe-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dark Mode for TryHackMe-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Dark Mode for TryHackMe - Eye Comfort Extension

Transform TryHackMe.com rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.

Designed for cyber enthusiasts, this sleek dark theme enhances readability and reduces eye strain for both daytime and nighttime learning.

Source code on Github:
https://github.com/waelmas/tryhackme-dark-mode

If you're enjoying it, share it with a friend and leave a review.

Brought to you by @waelmas

----------------------------
V1.2 Updates:
- Minor changes to store listing
- Attempt to fix the issue with safe browsing not trusting the extension

V1.1 Updates:
- Complete re-write of the code for better compatibility
- Coverage of edge cases where styles would break
- Added customization popup to allow users to toggle dark mode on/off                    

Grundlegende Informationen zur Erweiterung

Name Dark Mode for TryHackMe Dark Mode for TryHackMe
ID aheaidmpdognkkmllipnnjgkkomeafle
Offizielle URL https://chromewebstore.google.com/detail/dark-mode-for-tryhackme/aheaidmpdognkkmllipnnjgkkomeafle
Beschreibung Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.
Dateigröße 66.35 KB
Installationsanzahl 394
Aktuelle Version 1.2
Letztes Update 2023-11-28
Veröffentlichungsdatum 2023-11-26
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler https://innaton.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/waelmas/tryhackme-dark-mode
Hilfeseite URL https://github.com/waelmas/tryhackme-dark-mode/issues
URL der Datenschutzrichtlinien-Seite https://www.innaton.com/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "@waelmas",
    "name": "Dark Mode for TryHackMe",
    "description": "Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.",
    "version": "1.2",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/tryhackme.com\/room\/*",
                "*:\/\/tryhackme.com\/paths"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/popup.html"
    }
}