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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } |