ThingiZIP

A browser extension to easily download files from Thingiverse™

Co je ThingiZIP?

ThingiZIP je rozšíření Chrome vyvinuté tzoug, a jeho hlavní funkcí je „A browser extension to easily download files from Thingiverse™“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření ThingiZIP

Stáhněte si soubory rozšíření ThingiZIP ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název ThingiZIP ThingiZIP
ID maonfmeilcpjfdipacfehiidjngcoama
Oficiální URL https://chromewebstore.google.com/detail/thingizip/maonfmeilcpjfdipacfehiidjngcoama
Popis A browser extension to easily download files from Thingiverse™
Velikost souboru 62.95 KB
Počet instalací 1,409
Aktuální Verze 3.3
Poslední Aktualizace 2023-09-05
Datum Vydání 2022-02-01
Hodnocení 4.83/5 Celkem 6 Hodnocení
Vývojář tzoug
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/tzoug/ThingiZIP
URL Stránky Nápovědy https://github.com/tzoug/ThingiZIP
Podporované Jazyky 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"
            ]
        }
    ]
}