Thingiverse STL Downloader
Download STLs from Thingiverse -- without the ads.
Vad är Thingiverse STL Downloader?
Thingiverse STL Downloader är en Chrome-tillägg utvecklad av stephancasas, och dess huvudfunktion är "Download STLs from Thingiverse -- without the ads.".
Tilläggsskärmbilder
Ladda ner Thingiverse STL Downloader-förlängningens CRX-fil
Ladda ner Thingiverse STL Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Skip the forced ads on Thingiverse and get right to the good stuff.
Grundläggande Information om Tillägg
Namn | Thingiverse STL Downloader |
ID | ejkhjfjaoceihfojlppnhopenobeeoln |
Officiell webbadress | https://chromewebstore.google.com/detail/thingiverse-stl-downloade/ejkhjfjaoceihfojlppnhopenobeeoln |
Beskrivning | Download STLs from Thingiverse -- without the ads. |
Filstorlek | 66.14 KB |
Antal Installationer | 784 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2022-02-28 |
Publiceringsdatum | 2022-02-28 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | stephancasas |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/stephancasas |
Hjälpsida URL | https://github.com/stephancasas |
Stödda Språk | 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" } } |