Thingiverse Dark Mode
A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark
O que é Thingiverse Dark Mode?
Thingiverse Dark Mode é uma extensão do Chrome desenvolvida por lukedrushell, e sua principal característica é "A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Thingiverse Dark Mode
Baixe arquivos de extensão Thingiverse Dark Mode no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Thingiverse Dark Mode |
ID | cckkplppiiolngadmgbblplhikfgkglc |
URL Oficial | https://chromewebstore.google.com/detail/thingiverse-dark-mode/cckkplppiiolngadmgbblplhikfgkglc |
Descrição | A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark |
Tamanho do Arquivo | 46.82 KB |
Contagem de Instalações | 108 |
Versão Atual | 1.0 |
Última Atualização | 2023-01-05 |
Data de Publicação | 2023-01-04 |
Classificação | 4.00/5 Total de 2 Avaliações |
Desenvolvedor | lukedrushell |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/LuckDuracell/ThingiverseDark/ |
URL da Página de Ajuda | https://github.com/LuckDuracell/ThingiverseDark/ |
Idiomas Suportados | 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" ] } ] } |