SimplyPrint
Send files directly to SimplyPrint
SimplyPrintとは何ですか?
SimplyPrintはsimplyprint3dによって開発されたChromeの拡張機能で、その主な機能は「Send files directly to SimplyPrint」です。
拡張機能のスクリーンショット
SimplyPrint拡張機能のCRXファイルをダウンロード
SimplyPrint拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Instantly 3D print or slice files from Thingiverse and Printables - anywhere, anytime, from any device, wirelessly.
This extension adds a "Send to SimplyPrint" button to the 3D model sharing sites, Thingiverse and Printables, allowing you to, with 1 click, send a given file to the SimplyPrint Cloud platform, where you can print the file, slice or save it, or add it to your print queue!
Features;
- Adds a "Send to SimplyPrint" button to; Thingiverse & Printables 3D models
- Adds a SimplyPrint icon in your browser toolbar, which on-click takes you to the web-panel (can be removed) 拡張機能の基本情報
| 名前 | |
| ID | ajimllenbipapigpfnncfenedhenkpfb |
| 公式URL | https://chromewebstore.google.com/detail/simplyprint/ajimllenbipapigpfnncfenedhenkpfb |
| 説明 | Send files directly to SimplyPrint |
| ファイルサイズ | 105 KB |
| インストール数 | 280 |
| 現在のバージョン | 1.3 |
| 最終更新日 | 2023-10-06 |
| 公開日 | 2023-08-14 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | simplyprint3d |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://simplyprint.io/ |
| ヘルプページのURL | https://simplyprint.io/contact |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "SimplyPrint",
"description": "Send files directly to SimplyPrint",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png",
"256": "icons\/icon256.png"
},
"permissions": [],
"content_scripts": [
{
"matches": [
"https:\/\/www.thingiverse.com\/thing:*"
],
"js": [
"content_scripts\/thingiverse.js"
]
},
{
"matches": [
"https:\/\/*.printables.com\/*"
],
"js": [
"content_scripts\/printables.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/icon_black.svg"
],
"matches": [
"https:\/\/*.printables.com\/*",
"https:\/\/www.thingiverse.com\/*"
]
}
],
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_popup": "popup\/popup.html"
},
"version": "1.3"
} | |