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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://printathing.com และคุณลักษณะหลักของมันคือ "Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Print the Thing

ดาวน์โหลดไฟล์ส่วนขยาย 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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Print the Thing Print the Thing
ID jlimbpmgnncifjajjbahffioianancbd
URL อย่างเป็นทางการ 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\/"
    ]
}