Overleaf Dark Mode
hacky implementation of a dark mode for Overleaf
Cos'è Overleaf Dark Mode?
Overleaf Dark Mode è un'estensione di Chrome sviluppata da Jens Breitung, e la sua funzione principale è "hacky implementation of a dark mode for 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
restyling components of the Overleaf UI since Overleaf does not support a full dark mode experience
Informazioni di Base sull'Estensione
Nome | |
ID | ikljddlmgjbaieelllmogbclikdadhnf |
URL Ufficiale | https://chrome.google.com/webstore/detail/overleaf-dark-mode/ikljddlmgjbaieelllmogbclikdadhnf |
Descrizione | hacky implementation of a dark mode for Overleaf |
Dimensione del File | 12.78 KB |
Conteggio Installazioni | 921 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2021-01-20 |
Data di Pubblicazione | 2021-01-20 |
Valutazione | 1.09/5 Totale 11 Valutazioni |
Sviluppatore | Jens Breitung |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |