VRChat Profile
VRChat Profile extention
Vad är VRChat Profile?
VRChat Profile är en Chrome-tillägg utvecklad av https://vrcprofile.com, och dess huvudfunktion är "VRChat Profile extention".
Tilläggsskärmbilder
Ladda ner VRChat Profile-förlängningens CRX-fil
Ladda ner VRChat Profile-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
An extension for logging in to VRChat Profile Grundläggande Information om Tillägg
| Namn | |
| ID | mimooabamaoeldhibjbbmdgndnhdiknh |
| Officiell webbadress | https://chromewebstore.google.com/detail/vrchat-profile/mimooabamaoeldhibjbbmdgndnhdiknh |
| Beskrivning | VRChat Profile extention |
| Filstorlek | 19.17 KB |
| Antal Installationer | 563 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2021-02-01 |
| Publiceringsdatum | 2020-11-04 |
| Utvecklare | https://vrcprofile.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.0.0",
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"icons": {
"256": "icons\/vrcprofile.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/vrchat.com\/home\/*"
],
"js": [
"vrchat-content.js"
]
},
{
"matches": [
"https:\/\/vrcprofile.com\/*",
"http:\/\/localhost\/*"
],
"js": [
"vrcprofile-content.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"cookies",
"https:\/\/vrchat.com\/*"
]
} | |