Dark Mode for TryHackMe

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

Qu'est-ce que Dark Mode for TryHackMe ?

Dark Mode for TryHackMe est une extension Chrome développée par https://innaton.com, et sa fonction principale est "Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Dark Mode for TryHackMe

Téléchargez les fichiers d'extension Dark Mode for TryHackMe au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Dark Mode for TryHackMe Dark Mode for TryHackMe
ID aheaidmpdognkkmllipnnjgkkomeafle
URL Officiel https://chromewebstore.google.com/detail/dark-mode-for-tryhackme/aheaidmpdognkkmllipnnjgkkomeafle
Description Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.
Taille du Fichier 66.35 KB
Nombre d'Installations 394
Version Actuelle 1.2
Dernière Mise à Jour 2023-11-28
Date de Publication 2023-11-26
Évaluation 5.00/5 Total 6 Évaluations
Développeur https://innaton.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/waelmas/tryhackme-dark-mode
URL de la Page d'Aide https://github.com/waelmas/tryhackme-dark-mode/issues
URL de la Page de Politique de Confidentialité https://www.innaton.com/privacy
Langues Prises en Charge 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"
    }
}