Thingiverse STL Downloader
Download STLs from Thingiverse -- without the ads.
Cos'è Thingiverse STL Downloader?
Thingiverse STL Downloader è un'estensione di Chrome sviluppata da stephancasas, e la sua funzione principale è "Download STLs from Thingiverse -- without the ads.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Thingiverse STL Downloader
Scarica i file di estensione Thingiverse STL Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Skip the forced ads on Thingiverse and get right to the good stuff.
Informazioni di Base sull'Estensione
Nome | Thingiverse STL Downloader |
ID | ejkhjfjaoceihfojlppnhopenobeeoln |
URL Ufficiale | https://chromewebstore.google.com/detail/thingiverse-stl-downloade/ejkhjfjaoceihfojlppnhopenobeeoln |
Descrizione | Download STLs from Thingiverse -- without the ads. |
Dimensione del File | 66.14 KB |
Conteggio Installazioni | 784 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-02-28 |
Data di Pubblicazione | 2022-02-28 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | stephancasas |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/stephancasas |
URL della Pagina di Aiuto | https://github.com/stephancasas |
Lingue Supportate | 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" } } |