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是由lukedrushell开发的Chrome扩展程序,该扩展的主要功能是“A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark”。
扩展截图
下载Thingiverse Dark Mode扩展crx文件
下载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" ] } ] } |