Overleaf Dark Mode
A dark mode for the online LaTeX editor Overleaf.
Overleaf Dark Mode क्या है?
Overleaf Dark Mode Tushar Muralidharan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A dark mode for the online LaTeX editor Overleaf."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Overleaf Dark Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The extension inverts colours in the editor, PDF viewer, and modals, and adds a dark background to most content panes. It may be toggled by clicking on the icon.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | iepehlcmgnghepgeldbflbpaplenegpf |
आधिकारिक URL | https://chrome.google.com/webstore/detail/iepehlcmgnghepgeldbflbpaplenegpf |
विवरण | A dark mode for the online LaTeX editor Overleaf. |
फ़ाइल का आकार | 13.97 KB |
स्थापना संख्या | 5,146 |
वर्तमान संस्करण | 1.4 |
अंतिम अपडेट | 2022-08-07 |
प्रकाशन तिथि | 2022-04-15 |
रेटिंग | 5.00/5 कुल 7 रेटिंग्स |
डेवलपर | Tushar Muralidharan |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Overleaf Dark Mode", "description": "A dark mode for the online LaTeX editor Overleaf.", "version": "1.4", "manifest_version": 3, "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Click to toggle dark mode" }, "content_scripts": [ { "matches": [ "https:\/\/*.overleaf.com\/project\/*" ], "js": [ "toggle.js" ] } ], "permissions": [ "storage" ] } |