ThingiZIP

A browser extension to easily download files from Thingiverse™

Vad är ThingiZIP?

ThingiZIP är en Chrome-tillägg utvecklad av tzoug, och dess huvudfunktion är "A browser extension to easily download files from Thingiverse™".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner ThingiZIP-förlängningens CRX-fil

Ladda ner ThingiZIP-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn ThingiZIP ThingiZIP
ID maonfmeilcpjfdipacfehiidjngcoama
Officiell webbadress https://chromewebstore.google.com/detail/thingizip/maonfmeilcpjfdipacfehiidjngcoama
Beskrivning A browser extension to easily download files from Thingiverse™
Filstorlek 62.95 KB
Antal Installationer 1,409
Aktuell Version 3.3
Senast Uppdaterad 2023-09-05
Publiceringsdatum 2022-02-01
Betyg 4.83/5 Totalt 6 Betyg
Utvecklare tzoug
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/tzoug/ThingiZIP
Hjälpsida URL https://github.com/tzoug/ThingiZIP
Stödda Språk 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"
            ]
        }
    ]
}