Print the Thing

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

What is Print the Thing?

Print the Thing is a Chrome extension developed by http://printathing.com, and its main feature is "Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.".

Extension Screenshots

screenshot

Download Print the Thing Extension CRX File

Download Print the Thing extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Print the Thing Print the Thing
ID jlimbpmgnncifjajjbahffioianancbd
Official URL https://chrome.google.com/webstore/detail/print-the-thing/jlimbpmgnncifjajjbahffioianancbd
Description Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.
File Size 26.4 KB
Installation Count 212
Current Version 1.0.1.4
Last Updated 2020-05-27
Publish Date 2020-05-27
Developer http://printathing.com
Email [email protected]
Payment Type free
Extension Website https://printathing.com/print-the-thing/
Help Page URL https://printathing.com/about/contact/
Privacy Policy Page URL https://printathing.com/privacy.html
Supported Languages 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\/"
    ]
}