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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}