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”。

擴展截圖

screenshot
screenshot
screenshot

下載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 Thingiverse Dark Mode
ID cckkplppiiolngadmgbblplhikfgkglc
官方網址 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"
            ]
        }
    ]
}