Thingiverse STL Downloader

Download STLs from Thingiverse -- without the ads.

Apa itu Thingiverse STL Downloader?

Thingiverse STL Downloader adalah ekstensi Chrome yang dikembangkan oleh stephancasas, dan fitur utamanya adalah "Download STLs from Thingiverse -- without the ads.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Thingiverse STL Downloader

Unduh file ekstensi Thingiverse STL Downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Thingiverse STL Downloader Thingiverse STL Downloader
ID ejkhjfjaoceihfojlppnhopenobeeoln
URL Resmi https://chromewebstore.google.com/detail/thingiverse-stl-downloade/ejkhjfjaoceihfojlppnhopenobeeoln
Deskripsi Download STLs from Thingiverse -- without the ads.
Ukuran File 66.14 KB
Jumlah Instalasi 784
Versi Saat Ini 1.0
Terakhir Diperbarui 2022-02-28
Tanggal Publikasi 2022-02-28
Penilaian 5.00/5 Total 2 Penilaian
Pengembang stephancasas
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/stephancasas
URL Halaman Bantuan https://github.com/stephancasas
Bahasa yang Didukung 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"
    }
}