Overleaf Dark Mode
A dark mode for the online LaTeX editor Overleaf.
Cos'è Overleaf Dark Mode?
Overleaf Dark Mode è un'estensione di Chrome sviluppata da Tushar Muralidharan, e la sua funzione principale è "A dark mode for the online LaTeX editor Overleaf.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Overleaf Dark Mode
Scarica i file di estensione Overleaf Dark Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | iepehlcmgnghepgeldbflbpaplenegpf |
URL Ufficiale | https://chrome.google.com/webstore/detail/iepehlcmgnghepgeldbflbpaplenegpf |
Descrizione | A dark mode for the online LaTeX editor Overleaf. |
Dimensione del File | 13.97 KB |
Conteggio Installazioni | 5,146 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2022-08-07 |
Data di Pubblicazione | 2022-04-15 |
Valutazione | 5.00/5 Totale 7 Valutazioni |
Sviluppatore | Tushar Muralidharan |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |