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 |
| Eメール | [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"
}
} | |