Dark Mode for TryHackMe

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

¿Qué es Dark Mode for TryHackMe?

Dark Mode for TryHackMe es una extensión de Chrome desarrollada por https://innaton.com, y su función principal es "Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Dark Mode for TryHackMe

Descarga archivos de extensión Dark Mode for TryHackMe en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Dark Mode for TryHackMe Dark Mode for TryHackMe
ID aheaidmpdognkkmllipnnjgkkomeafle
URL Oficial https://chromewebstore.google.com/detail/dark-mode-for-tryhackme/aheaidmpdognkkmllipnnjgkkomeafle
Descripción Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.
Tamaño del Archivo 66.35 KB
Cantidad de Instalaciones 394
Versión Actual 1.2
Última Actualización 2023-11-28
Fecha de Publicación 2023-11-26
Calificación 5.00/5 Total de 6 Calificaciones
Desarrollador https://innaton.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/waelmas/tryhackme-dark-mode
URL de la Página de Ayuda https://github.com/waelmas/tryhackme-dark-mode/issues
URL de la Página de Política de Privacidad https://www.innaton.com/privacy
Idiomas Soportados 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"
    }
}