Thingiverse Dark Mode
A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark
What is Thingiverse Dark Mode?
Thingiverse Dark Mode is a Chrome extension developed by lukedrushell, and its main feature is "A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark".
Extension Screenshots
Download Thingiverse Dark Mode Extension CRX File
Download Thingiverse Dark Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Thingiverse Dark Mode |
ID | cckkplppiiolngadmgbblplhikfgkglc |
Official URL | https://chromewebstore.google.com/detail/thingiverse-dark-mode/cckkplppiiolngadmgbblplhikfgkglc |
Description | A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark |
File Size | 46.82 KB |
Installation Count | 108 |
Current Version | 1.0 |
Last Updated | 2023-01-05 |
Publish Date | 2023-01-04 |
Rating | 4.00/5 Total 2 Ratings |
Developer | lukedrushell |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/LuckDuracell/ThingiverseDark/ |
Help Page URL | https://github.com/LuckDuracell/ThingiverseDark/ |
Supported Languages | 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" ] } ] } |