Thingiverse Dark Mode
A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark
Co je Thingiverse Dark Mode?
Thingiverse Dark Mode je rozšíření Chrome vyvinuté lukedrushell, a jeho hlavní funkcí je „A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Thingiverse Dark Mode
Stáhněte si soubory rozšíření Thingiverse Dark Mode ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Thingiverse Dark Mode |
ID | cckkplppiiolngadmgbblplhikfgkglc |
Oficiální URL | https://chromewebstore.google.com/detail/thingiverse-dark-mode/cckkplppiiolngadmgbblplhikfgkglc |
Popis | A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark |
Velikost souboru | 46.82 KB |
Počet instalací | 108 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2023-01-05 |
Datum Vydání | 2023-01-04 |
Hodnocení | 4.00/5 Celkem 2 Hodnocení |
Vývojář | lukedrushell |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/LuckDuracell/ThingiverseDark/ |
URL Stránky Nápovědy | https://github.com/LuckDuracell/ThingiverseDark/ |
Podporované Jazyky | 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" ] } ] } |