Thingiverse Dark Mode
A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark
¿Qué es Thingiverse Dark Mode?
Thingiverse Dark Mode es una extensión de Chrome desarrollada por lukedrushell, y su función principal es "A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Thingiverse Dark Mode
Descarga archivos de extensión Thingiverse Dark Mode en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Thingiverse Dark Mode |
ID | cckkplppiiolngadmgbblplhikfgkglc |
URL Oficial | https://chromewebstore.google.com/detail/thingiverse-dark-mode/cckkplppiiolngadmgbblplhikfgkglc |
Descripción | A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark |
Tamaño del Archivo | 46.82 KB |
Cantidad de Instalaciones | 108 |
Versión Actual | 1.0 |
Última Actualización | 2023-01-05 |
Fecha de Publicación | 2023-01-04 |
Calificación | 4.00/5 Total de 2 Calificaciones |
Desarrollador | lukedrushell |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/LuckDuracell/ThingiverseDark/ |
URL de la Página de Ayuda | https://github.com/LuckDuracell/ThingiverseDark/ |
Idiomas Soportados | 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" ] } ] } |