Thingiverse STL Downloader

Download STLs from Thingiverse -- without the ads.

Was ist Thingiverse STL Downloader?

Thingiverse STL Downloader ist eine Chrome-Erweiterung, die von stephancasas entwickelt wurde, und ihr Hauptmerkmal ist "Download STLs from Thingiverse -- without the ads.".

Erweiterungsscreenshots

screenshot

Thingiverse STL Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Thingiverse STL Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Thingiverse STL Downloader Thingiverse STL Downloader
ID ejkhjfjaoceihfojlppnhopenobeeoln
Offizielle URL https://chromewebstore.google.com/detail/thingiverse-stl-downloade/ejkhjfjaoceihfojlppnhopenobeeoln
Beschreibung Download STLs from Thingiverse -- without the ads.
Dateigröße 66.14 KB
Installationsanzahl 784
Aktuelle Version 1.0
Letztes Update 2022-02-28
Veröffentlichungsdatum 2022-02-28
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler stephancasas
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/stephancasas
Hilfeseite URL https://github.com/stephancasas
Unterstützte Sprachen 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"
    }
}