Thingiverse STL Downloader

Download STLs from Thingiverse -- without the ads.

Co to jest Thingiverse STL Downloader?

Thingiverse STL Downloader to rozszerzenie Chrome opracowane przez stephancasas, a jego główną funkcją jest „Download STLs from Thingiverse -- without the ads.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Thingiverse STL Downloader

Pobierz pliki rozszerzeń Thingiverse STL Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Thingiverse STL Downloader Thingiverse STL Downloader
ID ejkhjfjaoceihfojlppnhopenobeeoln
Oficjalny URL https://chromewebstore.google.com/detail/thingiverse-stl-downloade/ejkhjfjaoceihfojlppnhopenobeeoln
Opis Download STLs from Thingiverse -- without the ads.
Rozmiar pliku 66.14 KB
Liczba instalacji 784
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-02-28
Data Publikacji 2022-02-28
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper stephancasas
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/stephancasas
Adres URL Strony Pomocy https://github.com/stephancasas
Obsługiwane Języki 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"
    }
}