Thingiverse Dark Mode

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

Τι είναι το Thingiverse Dark Mode;

Το Thingiverse Dark Mode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lukedrushell, και η κύρια λειτουργία του είναι "A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Thingiverse Dark Mode

Λήψη αρχείων επέκτασης Thingiverse Dark Mode σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Thingiverse Dark Mode Thingiverse Dark Mode
ID cckkplppiiolngadmgbblplhikfgkglc
Επίσημο URL https://chromewebstore.google.com/detail/thingiverse-dark-mode/cckkplppiiolngadmgbblplhikfgkglc
Περιγραφή A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark
Μέγεθος Αρχείου 46.82 KB
Αριθμός Εγκαταστάσεων 108
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-01-05
Ημερομηνία Δημοσίευσης 2023-01-04
Αξιολόγηση 4.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής lukedrushell
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/LuckDuracell/ThingiverseDark/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/LuckDuracell/ThingiverseDark/
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}