Thingiverse STL Downloader
Download STLs from Thingiverse -- without the ads.
Thingiverse STL Downloaderคืออะไร?
Thingiverse STL Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย stephancasas และคุณลักษณะหลักของมันคือ "Download STLs from Thingiverse -- without the ads."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Thingiverse STL Downloader
ดาวน์โหลดไฟล์ส่วนขยาย Thingiverse STL Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Skip the forced ads on Thingiverse and get right to the good stuff.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Thingiverse STL Downloader |
ID | ejkhjfjaoceihfojlppnhopenobeeoln |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/thingiverse-stl-downloade/ejkhjfjaoceihfojlppnhopenobeeoln |
คำอธิบาย | Download STLs from Thingiverse -- without the ads. |
ขนาดไฟล์ | 66.14 KB |
จำนวนการติดตั้ง | 784 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2022-02-28 |
วันที่เผยแพร่ | 2022-02-28 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | stephancasas |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/stephancasas |
URL หน้าช่วยเหลือ | https://github.com/stephancasas |
ภาษาที่รองรับ | 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" } } |