Thingiverse STL Downloader
Download STLs from Thingiverse -- without the ads.
Thingiverse STL Downloader là gì?
Thingiverse STL Downloader là một tiện ích mở rộng Chrome được phát triển bởi stephancasas, và tính năng chính của nó là "Download STLs from Thingiverse -- without the ads.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Thingiverse STL Downloader
Tải xuống các tệp mở rộng Thingiverse STL Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Skip the forced ads on Thingiverse and get right to the good stuff.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Thingiverse STL Downloader |
ID | ejkhjfjaoceihfojlppnhopenobeeoln |
URL Chính Thức | https://chromewebstore.google.com/detail/thingiverse-stl-downloade/ejkhjfjaoceihfojlppnhopenobeeoln |
Mô tả | Download STLs from Thingiverse -- without the ads. |
Kích Thước Tệp | 66.14 KB |
Số Lần Cài Đặt | 784 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2022-02-28 |
Ngày Phát Hành | 2022-02-28 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | stephancasas |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/stephancasas |
URL Trang Trợ Giúp | https://github.com/stephancasas |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |