Thingiverse STL Downloader

Download STLs from Thingiverse -- without the ads.

什麼是Thingiverse STL Downloader?

Thingiverse STL Downloader是由stephancasas開發的Chrome擴展程式,該擴展的主要功能是“Download STLs from Thingiverse -- without the ads.”。

擴展截圖

screenshot

下載Thingiverse STL Downloader擴展crx文件

下載Thingiverse STL Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Skip the forced ads on Thingiverse and get right to the good stuff.                    

擴展基本資訊

名稱 Thingiverse STL Downloader Thingiverse STL Downloader
ID ejkhjfjaoceihfojlppnhopenobeeoln
官方網址 https://chromewebstore.google.com/detail/thingiverse-stl-downloade/ejkhjfjaoceihfojlppnhopenobeeoln
簡介 Download STLs from Thingiverse -- without the ads.
檔案大小 66.14 KB
安裝次數 784
目前版本 1.0
更新時間 2022-02-28
上架時間 2022-02-28
評分 5.00/5 共 2 次評分
開發者 stephancasas
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/stephancasas
說明頁面URL https://github.com/stephancasas
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Thingiverse STL Downloader",
    "description": "Download STLs from Thingiverse -- without the ads.",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contextmonitor.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/active--16.png",
            "32": "\/images\/active--32.png",
            "48": "\/images\/active--48.png",
            "128": "\/images\/active--128.png"
        }
    },
    "icons": {
        "16": "\/images\/active--16.png",
        "32": "\/images\/active--32.png",
        "48": "\/images\/active--48.png",
        "128": "\/images\/active--128.png"
    }
}