Dark Mode for TryHackMe

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

什麼是Dark Mode for TryHackMe?

Dark Mode for TryHackMe是由https://innaton.com開發的Chrome擴展程式,該擴展的主要功能是“Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.”。

擴展截圖

screenshot
screenshot

下載Dark Mode for TryHackMe擴展crx文件

下載Dark Mode for TryHackMe擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Dark Mode for TryHackMe Dark Mode for TryHackMe
ID aheaidmpdognkkmllipnnjgkkomeafle
官方網址 https://chromewebstore.google.com/detail/dark-mode-for-tryhackme/aheaidmpdognkkmllipnnjgkkomeafle
簡介 Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.
檔案大小 66.35 KB
安裝次數 394
目前版本 1.2
更新時間 2023-11-28
上架時間 2023-11-26
評分 5.00/5 共 6 次評分
開發者 https://innaton.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/waelmas/tryhackme-dark-mode
說明頁面URL https://github.com/waelmas/tryhackme-dark-mode/issues
隱私政策頁面URL https://www.innaton.com/privacy
支援的語言 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"
    }
}