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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}