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 с друзьями, чтобы легко установить расширения 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 |
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" ] } ] } |