VRChat Avatar Script
Allows saving of avatars on the VRChat website
VRChat Avatar Scriptとは何ですか?
VRChat Avatar Scriptはmakkumikanによって開発されたChromeの拡張機能で、その主な機能は「Allows saving of avatars on the VRChat website」です。
拡張機能のスクリーンショット
VRChat Avatar Script拡張機能のCRXファイルをダウンロード
VRChat Avatar Script拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Injects a script into the VRChat website avatar page (followed by an avatar id) that allows saving to avatar groups (or just one for non-VRC+ users)
拡張機能の基本情報
名前 | VRChat Avatar Script |
ID | dcgdfpppecdcabiipemphgppbccpopic |
公式URL | https://chromewebstore.google.com/detail/vrchat-avatar-script/dcgdfpppecdcabiipemphgppbccpopic |
説明 | Allows saving of avatars on the VRChat website |
ファイルサイズ | 43.74 KB |
インストール数 | 456 |
現在のバージョン | 1.3 |
最終更新日 | 2022-08-10 |
公開日 | 2022-08-10 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | makkumikan |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VRChat Avatar Script", "description": "Allows saving of avatars on the VRChat website", "version": "1.3", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/vrchat.com\/*" ], "js": [ "jquery-latest.min.js", "jquery.initialize.min.js", "jquery.sweet-dropdown.min.js" ], "css": [ "jquery.sweet-dropdown.min.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/vrchat.com\/*" ], "js": [ "all.js" ] }, { "matches": [ "https:\/\/vrchat.com\/home", "https:\/\/vrchat.com\/home\/locations" ], "js": [ "home.js" ] }, { "matches": [ "https:\/\/vrchat.com\/home\/avatar*" ], "js": [ "avatar.js" ] } ] } |