Mixamo Batcher

Mixamo Batcher allows you to create and save animation packs, and download them as an archive file

Mixamo Batcher là gì?

Mixamo Batcher là một tiện ích mở rộng Chrome được phát triển bởi Faris Mustafa, và tính năng chính của nó là "Mixamo Batcher allows you to create and save animation packs, and download them as an archive file".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mixamo Batcher

Tải xuống các tệp mở rộng Mixamo Batcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Mixamo is an excellent tool that makes it easy and quick to use 3D motion capture data. However, the standard Mixamo user interface is rather minimal, and over time some built in features have been removed. Mixamo Batcher extends the standard Mixamo UI by inserting some additional features while viewing the site.

Among the features, some included are:

- Project management
- Project wide preferences e.g. download all files as fbx for Unity
- Animation packs that will load the correct character model
- Quickly scaffold out character animation packs by duplicating packs
- Tweaking parameters in Mixamo automatically syncs to pack animations
- Download the entire pack as a single archive file
- Per animation download preferences 

This activity will be saved into your browser's local storage, with the ability to export and import project data as JSON.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mixamo Batcher Mixamo Batcher
ID akhmggjacmenkfgbnlclhmnkmamogepd
URL Chính Thức https://chromewebstore.google.com/detail/mixamo-batcher/akhmggjacmenkfgbnlclhmnkmamogepd
Mô tả Mixamo Batcher allows you to create and save animation packs, and download them as an archive file
Kích Thước Tệp 602 KB
Số Lần Cài Đặt 337
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2021-12-22
Ngày Phát Hành 2021-12-21
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Faris Mustafa
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/farism/mixamo-batcher
URL Trang Trợ Giúp https://github.com/farism/mixamo-batcher/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mixamo Batcher",
    "description": "Mixamo Batcher allows you to create and save animation packs, and download them as an archive file",
    "version": "1.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "https:\/\/www.mixamo.com\/*",
        "https:\/\/mixamo.com\/*",
        "https:\/\/mixamo-storage-prod.s3-us-west-2.amazonaws.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.mixamo.com\/*",
                "https:\/\/mixamo.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.mixamo.com\/*",
                "https:\/\/mixamo.com\/*"
            ],
            "js": [
                "inject-xhr.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "index.html",
        "xhr.js"
    ]
}