Thingiverse Dark Mode
A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark
Apa itu Thingiverse Dark Mode?
Thingiverse Dark Mode adalah ekstensi Chrome yang dikembangkan oleh lukedrushell, dan fitur utamanya adalah "A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Thingiverse Dark Mode
Unduh file ekstensi Thingiverse Dark Mode dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Thingiverse Dark Mode |
ID | cckkplppiiolngadmgbblplhikfgkglc |
URL Resmi | https://chromewebstore.google.com/detail/thingiverse-dark-mode/cckkplppiiolngadmgbblplhikfgkglc |
Deskripsi | A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark |
Ukuran File | 46.82 KB |
Jumlah Instalasi | 108 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2023-01-05 |
Tanggal Publikasi | 2023-01-04 |
Penilaian | 4.00/5 Total 2 Penilaian |
Pengembang | lukedrushell |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/LuckDuracell/ThingiverseDark/ |
URL Halaman Bantuan | https://github.com/LuckDuracell/ThingiverseDark/ |
Bahasa yang Didukung | 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" ] } ] } |