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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" } } |