ThingiZIP

A browser extension to easily download files from Thingiverse™

ThingiZIPคืออะไร?

ThingiZIP เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tzoug และคุณลักษณะหลักของมันคือ "A browser extension to easily download files from Thingiverse™"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ThingiZIP

ดาวน์โหลดไฟล์ส่วนขยาย ThingiZIP ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ThingiZIP ThingiZIP
ID maonfmeilcpjfdipacfehiidjngcoama
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/thingizip/maonfmeilcpjfdipacfehiidjngcoama
คำอธิบาย A browser extension to easily download files from Thingiverse™
ขนาดไฟล์ 62.95 KB
จำนวนการติดตั้ง 1,409
เวอร์ชันปัจจุบัน 3.3
อัปเดตครั้งล่าสุด 2023-09-05
วันที่เผยแพร่ 2022-02-01
คะแนน 4.83/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา tzoug
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tzoug/ThingiZIP
URL หน้าช่วยเหลือ https://github.com/tzoug/ThingiZIP
ภาษาที่รองรับ 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"
            ]
        }
    ]
}