Thingiverse STL Downloader
Download STLs from Thingiverse -- without the ads.
Hvad er Thingiverse STL Downloader?
Thingiverse STL Downloader er en Chrome-udvidelse udviklet af stephancasas, og dens hovedfunktion er "Download STLs from Thingiverse -- without the ads.".
Udvidelsesskærmbilleder
Download Thingiverse STL Downloader-udvidelses-CRX-fil
Download Thingiverse STL Downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Skip the forced ads on Thingiverse and get right to the good stuff. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ejkhjfjaoceihfojlppnhopenobeeoln |
| Officiel URL | https://chromewebstore.google.com/detail/thingiverse-stl-downloade/ejkhjfjaoceihfojlppnhopenobeeoln |
| Beskrivelse | Download STLs from Thingiverse -- without the ads. |
| Filstørrelse | 66.14 KB |
| Antal Installationer | 784 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2022-02-28 |
| Udgivelsesdato | 2022-02-28 |
| Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
| Udvikler | stephancasas |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/stephancasas |
| Hjælpeside-URL | https://github.com/stephancasas |
| Understøttede Sprog | 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"
}
} | |