Print the Thing

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

Cos'è Print the Thing?

Print the Thing è un'estensione di Chrome sviluppata da http://printathing.com, e la sua funzione principale è "Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Print the Thing

Scarica i file di estensione Print the Thing in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Print the Thing Print the Thing
ID jlimbpmgnncifjajjbahffioianancbd
URL Ufficiale https://chrome.google.com/webstore/detail/print-the-thing/jlimbpmgnncifjajjbahffioianancbd
Descrizione Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.
Dimensione del File 26.4 KB
Conteggio Installazioni 212
Versione Corrente 1.0.1.4
Ultimo Aggiornamento 2020-05-27
Data di Pubblicazione 2020-05-27
Sviluppatore http://printathing.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://printathing.com/print-the-thing/
URL della Pagina di Aiuto https://printathing.com/about/contact/
URL della Pagina della Politica sulla Privacy https://printathing.com/privacy.html
Lingue Supportate 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\/"
    ]
}