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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Transform TryHackMe rooms into a sleek, dark theme, reducing eye strain and improving readability during long study sessions."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Dark Mode for TryHackMe एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
एक्सटेंशन की मूल जानकारी
नाम | |
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" } } |