Thingiverse Dark Mode

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

Qu'est-ce que Thingiverse Dark Mode ?

Thingiverse Dark Mode est une extension Chrome développée par lukedrushell, et sa fonction principale est "A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Thingiverse Dark Mode

Téléchargez les fichiers d'extension Thingiverse Dark Mode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Thingiverse Dark Mode Thingiverse Dark Mode
ID cckkplppiiolngadmgbblplhikfgkglc
URL Officiel 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
Taille du Fichier 46.82 KB
Nombre d'Installations 108
Version Actuelle 1.0
Dernière Mise à Jour 2023-01-05
Date de Publication 2023-01-04
Évaluation 4.00/5 Total 2 Évaluations
Développeur lukedrushell
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/LuckDuracell/ThingiverseDark/
URL de la Page d'Aide https://github.com/LuckDuracell/ThingiverseDark/
Langues Prises en Charge 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"
            ]
        }
    ]
}