Mixamo Batcher

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

什麼是Mixamo Batcher?

Mixamo Batcher是由Faris Mustafa開發的Chrome擴展程式,該擴展的主要功能是“Mixamo Batcher allows you to create and save animation packs, and download them as an archive file”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Mixamo Batcher擴展crx文件

下載Mixamo Batcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Mixamo Batcher Mixamo Batcher
ID akhmggjacmenkfgbnlclhmnkmamogepd
官方網址 https://chromewebstore.google.com/detail/mixamo-batcher/akhmggjacmenkfgbnlclhmnkmamogepd
簡介 Mixamo Batcher allows you to create and save animation packs, and download them as an archive file
檔案大小 602 KB
安裝次數 337
目前版本 1.2
更新時間 2021-12-22
上架時間 2021-12-21
評分 5.00/5 共 3 次評分
開發者 Faris Mustafa
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/farism/mixamo-batcher
說明頁面URL https://github.com/farism/mixamo-batcher/issues
支援的語言 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"
    ]
}