Thingiverse STL Downloader
Download STLs from Thingiverse -- without the ads.
O que é Thingiverse STL Downloader?
Thingiverse STL Downloader é uma extensão do Chrome desenvolvida por stephancasas, e sua principal característica é "Download STLs from Thingiverse -- without the ads.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Thingiverse STL Downloader
Baixe arquivos de extensão Thingiverse STL Downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Skip the forced ads on Thingiverse and get right to the good stuff.
Informações Básicas da Extensão
Nome | Thingiverse STL Downloader |
ID | ejkhjfjaoceihfojlppnhopenobeeoln |
URL Oficial | https://chromewebstore.google.com/detail/thingiverse-stl-downloade/ejkhjfjaoceihfojlppnhopenobeeoln |
Descrição | Download STLs from Thingiverse -- without the ads. |
Tamanho do Arquivo | 66.14 KB |
Contagem de Instalações | 784 |
Versão Atual | 1.0 |
Última Atualização | 2022-02-28 |
Data de Publicação | 2022-02-28 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | stephancasas |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/stephancasas |
URL da Página de Ajuda | https://github.com/stephancasas |
Idiomas Suportados | 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" } } |