Print the Thing
Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.
什麼是Print the Thing?
Print the Thing是由http://printathing.com開發的Chrome擴展程式,該擴展的主要功能是“Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.”。
擴展截圖
下載Print the Thing擴展crx文件
下載Print the Thing擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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!
擴展基本資訊
名稱 | |
ID | jlimbpmgnncifjajjbahffioianancbd |
官方網址 | https://chrome.google.com/webstore/detail/print-the-thing/jlimbpmgnncifjajjbahffioianancbd |
簡介 | Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button. |
檔案大小 | 26.4 KB |
安裝次數 | 212 |
目前版本 | 1.0.1.4 |
更新時間 | 2020-05-27 |
上架時間 | 2020-05-27 |
開發者 | http://printathing.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://printathing.com/print-the-thing/ |
說明頁面URL | https://printathing.com/about/contact/ |
隱私政策頁面URL | https://printathing.com/privacy.html |
支援的語言 | 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\/" ] } |