ThingiZIP

A browser extension to easily download files from Thingiverse™

Cos'è ThingiZIP?

ThingiZIP è un'estensione di Chrome sviluppata da tzoug, e la sua funzione principale è "A browser extension to easily download files from Thingiverse™".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione ThingiZIP

Scarica i file di estensione ThingiZIP 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

                        ThingiZIP is a web browser extension that makes it easy to download images and files from Thingiverse™. This extension creates an interactive popup in the toolbar of your browser.

When you click on the extension on a valid Thingiverse™ page, you will presented with all the information related to the Thingiverse™ page.

There are two download options.
- Download Files: Only downloads the files
- Download All: downloads (images, files and details.txt file)

In addition to be able to download relevant files, you can also view the history of Thingiverse™ pages you visited.
Note: The information will only be added to the recents page if you clicked on the extension. If you go to multiple pages without opening the extension popup, it will not be added to the recents.

If you have any questions or concerns, please visit the repository on Github.                    

Informazioni di Base sull'Estensione

Nome ThingiZIP ThingiZIP
ID maonfmeilcpjfdipacfehiidjngcoama
URL Ufficiale https://chromewebstore.google.com/detail/thingizip/maonfmeilcpjfdipacfehiidjngcoama
Descrizione A browser extension to easily download files from Thingiverse™
Dimensione del File 62.95 KB
Conteggio Installazioni 1,409
Versione Corrente 3.3
Ultimo Aggiornamento 2023-09-05
Data di Pubblicazione 2022-02-01
Valutazione 4.83/5 Totale 6 Valutazioni
Sviluppatore tzoug
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tzoug/ThingiZIP
URL della Pagina di Aiuto https://github.com/tzoug/ThingiZIP
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ThingiZIP",
    "description": "A browser extension to easily download files from Thingiverse\u2122",
    "version": "3.3",
    "manifest_version": 3,
    "action": {
        "default_popup": "src\/popup\/index.html"
    },
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "activeTab"
    ],
    "icons": {
        "48": "ThingiZIP.png"
    },
    "content_scripts": [
        {
            "js": [],
            "matches": [
                "https:\/\/www.thingiverse.com\/thing:*"
            ],
            "css": [
                ".\/src\/dummy.css"
            ]
        }
    ]
}