Overleaf Dark Mode
hacky implementation of a dark mode for Overleaf
What is Overleaf Dark Mode?
Overleaf Dark Mode is a Chrome extension developed by Jens Breitung, and its main feature is "hacky implementation of a dark mode for 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
restyling components of the Overleaf UI since Overleaf does not support a full dark mode experience
Extension Basic Information
Name | |
ID | ikljddlmgjbaieelllmogbclikdadhnf |
Official URL | https://chrome.google.com/webstore/detail/overleaf-dark-mode/ikljddlmgjbaieelllmogbclikdadhnf |
Description | hacky implementation of a dark mode for Overleaf |
File Size | 12.78 KB |
Installation Count | 921 |
Current Version | 0.0.1 |
Last Updated | 2021-01-20 |
Publish Date | 2021-01-20 |
Rating | 1.09/5 Total 11 Ratings |
Developer | Jens Breitung |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Overleaf Dark Mode", "version": "0.0.1", "manifest_version": 2, "description": "hacky implementation of a dark mode for Overleaf", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*.overleaf.com\/project\/*" ], "css": [ "styles.css" ], "js": [ "overleaf.js" ], "run_at": "document_end" } ], "browser_action": { "default_title": "Overleaf Dark Mode" } } |