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 là gì?

Dark Mode for TryHackMe là một tiện ích mở rộng Chrome được phát triển bởi https://innaton.com, và tính năng chính của nó là "Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dark Mode for TryHackMe

Tải xuống các tệp mở rộng Dark Mode for TryHackMe dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dark Mode for TryHackMe Dark Mode for TryHackMe
ID aheaidmpdognkkmllipnnjgkkomeafle
URL Chính Thức https://chromewebstore.google.com/detail/dark-mode-for-tryhackme/aheaidmpdognkkmllipnnjgkkomeafle
Mô tả Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions.
Kích Thước Tệp 66.35 KB
Số Lần Cài Đặt 394
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2023-11-28
Ngày Phát Hành 2023-11-26
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://innaton.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/waelmas/tryhackme-dark-mode
URL Trang Trợ Giúp https://github.com/waelmas/tryhackme-dark-mode/issues
URL Trang Chính Sách Bảo Mật https://www.innaton.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}