Print the Thing

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

Wat is Print the Thing?

Print the Thing is een Chrome-extensie ontwikkeld door http://printathing.com, en de belangrijkste functie is "Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Print the Thing

Download Print the Thing-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Print the Thing Print the Thing
ID jlimbpmgnncifjajjbahffioianancbd
Officiële URL https://chrome.google.com/webstore/detail/print-the-thing/jlimbpmgnncifjajjbahffioianancbd
Beschrijving Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.
Bestandsgrootte 26.4 KB
Aantal Installaties 212
Huidige Versie 1.0.1.4
Laatst Bijgewerkt 2020-05-27
Publicatiedatum 2020-05-27
Ontwikkelaar http://printathing.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://printathing.com/print-the-thing/
Help Pagina-URL https://printathing.com/about/contact/
URL van de Privacybeleid Pagina https://printathing.com/privacy.html
Ondersteunde Talen 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\/"
    ]
}