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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Thingiverse Dark Mode
قم بتنزيل ملفات الامتداد Thingiverse Dark Mode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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/ |
عنوان صفحة المساعدة | 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" ] } ] } |