Print the Thing
Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.
O que é Print the Thing?
Print the Thing é uma extensão do Chrome desenvolvida por http://printathing.com, e sua principal característica é "Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Print the Thing
Baixe arquivos de extensão Print the Thing 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
This unobtrusive extension simply adds a Print the Thing button right into the most common 3D marketplace website: Thingiverse. You can go from browsing to printing 3D models at printathing.com in just a click!
Informações Básicas da Extensão
Nome | |
ID | jlimbpmgnncifjajjbahffioianancbd |
URL Oficial | https://chrome.google.com/webstore/detail/print-the-thing/jlimbpmgnncifjajjbahffioianancbd |
Descrição | Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button. |
Tamanho do Arquivo | 26.4 KB |
Contagem de Instalações | 212 |
Versão Atual | 1.0.1.4 |
Última Atualização | 2020-05-27 |
Data de Publicação | 2020-05-27 |
Desenvolvedor | http://printathing.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://printathing.com/print-the-thing/ |
URL da Página de Ajuda | https://printathing.com/about/contact/ |
URL da Página de Política de Privacidade | https://printathing.com/privacy.html |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Print the Thing", "short_name": "Print a Thing", "description": "Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.", "version": "1.0.1.4", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/www.thingiverse.com\/thing:*" ], "js": [ "thingiverse.js" ], "run_at": "document_end" } ], "externally_connectable": { "matches": [ "https:\/\/printathing.com\/*" ] }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "https:\/\/www.thingiverse.com\/" ] } |