Thingiverse STL Downloader
Download STLs from Thingiverse -- without the ads.
什么是Thingiverse STL Downloader?
Thingiverse STL Downloader是由stephancasas开发的Chrome扩展程序,该扩展的主要功能是“Download STLs from Thingiverse -- without the ads.”。
扩展截图
下载Thingiverse STL Downloader扩展crx文件
下载Thingiverse STL Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Skip the forced ads on Thingiverse and get right to the good stuff. 扩展基本信息
| 名称 | |
| 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"
}
} | |