Thingiverse Dark Mode

A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark

Wat is Thingiverse Dark Mode?

Thingiverse Dark Mode is een Chrome-extensie ontwikkeld door lukedrushell, en de belangrijkste functie is "A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Thingiverse Dark Mode

Download Thingiverse Dark Mode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Thingiverse Dark Mode Thingiverse Dark Mode
ID cckkplppiiolngadmgbblplhikfgkglc
Officiële URL https://chromewebstore.google.com/detail/thingiverse-dark-mode/cckkplppiiolngadmgbblplhikfgkglc
Beschrijving A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark
Bestandsgrootte 46.82 KB
Aantal Installaties 108
Huidige Versie 1.0
Laatst Bijgewerkt 2023-01-05
Publicatiedatum 2023-01-04
Beoordeling 4.00/5 Totaal 2 Beoordelingen
Ontwikkelaar lukedrushell
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/LuckDuracell/ThingiverseDark/
Help Pagina-URL https://github.com/LuckDuracell/ThingiverseDark/
Ondersteunde Talen 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"
            ]
        }
    ]
}