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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://innaton.com และคุณลักษณะหลักของมันคือ "Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dark Mode for TryHackMe

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    }
}