Overleaf Dark Mode
A dark mode for the online LaTeX editor Overleaf.
What is Overleaf Dark Mode?
Overleaf Dark Mode is a Chrome extension developed by Tushar Muralidharan, and its main feature is "A dark mode for the online LaTeX editor Overleaf.".
Extension Screenshots
Download Overleaf Dark Mode Extension CRX File
Download Overleaf Dark Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | iepehlcmgnghepgeldbflbpaplenegpf |
Official URL | https://chrome.google.com/webstore/detail/iepehlcmgnghepgeldbflbpaplenegpf |
Description | A dark mode for the online LaTeX editor Overleaf. |
File Size | 13.97 KB |
Installation Count | 5,146 |
Current Version | 1.4 |
Last Updated | 2022-08-07 |
Publish Date | 2022-04-15 |
Rating | 5.00/5 Total 7 Ratings |
Developer | Tushar Muralidharan |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |