Print the Thing

Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.

Print the Thing란 무엇입니까?

Print the Thing은(는) http://printathing.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button."입니다.

확장 프로그램 스크린샷

screenshot

Print the Thing 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This unobtrusive extension simply adds a Print the Thing button right into the most common 3D marketplace website: Thingiverse. You can go from browsing to printing 3D models at printathing.com in just a click!                    

확장 프로그램 기본 정보

이름 Print the Thing Print the Thing
ID jlimbpmgnncifjajjbahffioianancbd
공식 URL https://chrome.google.com/webstore/detail/print-the-thing/jlimbpmgnncifjajjbahffioianancbd
설명 Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.
파일 크기 26.4 KB
설치 횟수 212
현재 버전 1.0.1.4
최근 업데이트 2020-05-27
출시 날짜 2020-05-27
개발자 http://printathing.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://printathing.com/print-the-thing/
도움말 페이지 URL https://printathing.com/about/contact/
개인정보 보호 정책 페이지 URL https://printathing.com/privacy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Print the Thing",
    "short_name": "Print a Thing",
    "description": "Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.",
    "version": "1.0.1.4",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.thingiverse.com\/thing:*"
            ],
            "js": [
                "thingiverse.js"
            ],
            "run_at": "document_end"
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/printathing.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/www.thingiverse.com\/"
    ]
}