Thingiverse Dark Mode
A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark
Vad är Thingiverse Dark Mode?
Thingiverse Dark Mode är en Chrome-tillägg utvecklad av lukedrushell, och dess huvudfunktion är "A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark".
Tilläggsskärmbilder
Ladda ner Thingiverse Dark Mode-förlängningens CRX-fil
Ladda ner Thingiverse Dark Mode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Thingiverse Dark Mode |
ID | cckkplppiiolngadmgbblplhikfgkglc |
Officiell webbadress | https://chromewebstore.google.com/detail/thingiverse-dark-mode/cckkplppiiolngadmgbblplhikfgkglc |
Beskrivning | A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark |
Filstorlek | 46.82 KB |
Antal Installationer | 108 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2023-01-05 |
Publiceringsdatum | 2023-01-04 |
Betyg | 4.00/5 Totalt 2 Betyg |
Utvecklare | lukedrushell |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/LuckDuracell/ThingiverseDark/ |
Hjälpsida URL | https://github.com/LuckDuracell/ThingiverseDark/ |
Stödda Språk | 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" ] } ] } |