SimplyPrint

Send files directly to SimplyPrint

什麼是SimplyPrint?

SimplyPrint是由simplyprint3d開發的Chrome擴展程式,該擴展的主要功能是“Send files directly to SimplyPrint”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載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)                    

擴展基本資訊

名稱 SimplyPrint SimplyPrint
ID ajimllenbipapigpfnncfenedhenkpfb
官方網址 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
電子郵箱 [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"
}