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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Print the Thing
قم بتنزيل ملفات الامتداد Print the Thing بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان 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/ |
عنوان صفحة المساعدة | https://printathing.com/about/contact/ |
عنوان صفحة سياسة الخصوصية | 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\/" ] } |