Thingiverse Dark Mode
A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark
Cos'è Thingiverse Dark Mode?
Thingiverse Dark Mode è un'estensione di Chrome sviluppata da lukedrushell, e la sua funzione principale è "A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Thingiverse Dark Mode
Scarica i file di estensione Thingiverse 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
This is a simple script which overwrites the elements on Thingiverse to make the background colors darker. The code was written by a 17 year old developer (hey that's me) in like two hours, and hopefully won't be necessary for long because Thingiverse should just make one themselves. All Source Code for this project is listed here: https://github.com/LuckDuracell/ThingiverseDark/ Feel free to make any revisions or changes as you see fit.
Informazioni di Base sull'Estensione
Nome | Thingiverse Dark Mode |
ID | cckkplppiiolngadmgbblplhikfgkglc |
URL Ufficiale | https://chromewebstore.google.com/detail/thingiverse-dark-mode/cckkplppiiolngadmgbblplhikfgkglc |
Descrizione | A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark |
Dimensione del File | 46.82 KB |
Conteggio Installazioni | 108 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-01-05 |
Data di Pubblicazione | 2023-01-04 |
Valutazione | 4.00/5 Totale 2 Valutazioni |
Sviluppatore | lukedrushell |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/LuckDuracell/ThingiverseDark/ |
URL della Pagina di Aiuto | https://github.com/LuckDuracell/ThingiverseDark/ |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Thingiverse Dark Mode", "version": "1.0", "description": "A simple script which converts Thingiverse to a darker theme. Source code here: https:\/\/github.com\/LuckDuracell\/ThingiverseDark", "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" }, "permissions": [ "activeTab" ], "host_permissions": [ "https:\/\/www.thingiverse.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.thingiverse.com\/*" ], "js": [ "content.js" ] } ] } |