Thingiverse Dark Mode

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

Thingiverse Dark Mode là gì?

Thingiverse Dark Mode là một tiện ích mở rộng Chrome được phát triển bởi lukedrushell, và tính năng chính của nó là "A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Thingiverse Dark Mode

Tải xuống các tệp mở rộng Thingiverse Dark Mode dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Thingiverse Dark Mode Thingiverse Dark Mode
ID cckkplppiiolngadmgbblplhikfgkglc
URL Chính Thức https://chromewebstore.google.com/detail/thingiverse-dark-mode/cckkplppiiolngadmgbblplhikfgkglc
Mô tả A simple script which converts Thingiverse to a darker theme. Source code here: https://github.com/LuckDuracell/ThingiverseDark
Kích Thước Tệp 46.82 KB
Số Lần Cài Đặt 108
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-01-05
Ngày Phát Hành 2023-01-04
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển lukedrushell
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/LuckDuracell/ThingiverseDark/
URL Trang Trợ Giúp https://github.com/LuckDuracell/ThingiverseDark/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}