Better vrchat DOT com

Extension to make VRChat official website more convenient

Τι είναι το Better vrchat DOT com;

Το Better vrchat DOT com είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον riku1227, και η κύρια λειτουργία του είναι "Extension to make VRChat official website more convenient".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Better vrchat DOT com

Λήψη αρχείων επέκτασης Better vrchat DOT com σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ※The VRChat API is not officially supported, so there is a possibility that this extension will no longer be available, or it may behave unexpectedly, or your logged-in account may be banned. Please use it at your own risk.

For Firefox users, please install from here: https://addons.mozilla.org/ja/firefox/addon/better-vrchat-dot-com/

----Features----

・ Display the number of users in instances where your friends are present
    ・ You can update the user count information of that instance by clicking the refresh button.
・ Hide the "Make Avatar Public" button and "Delete Avatar" button on the avatar information page
    ・You can individually enable or disable each of them in the settings.
    ・By default, they are disabled, so if you want to hide them, please enable them in the settings.
・ Each feature can be individually enabled or disabled in the settings.
----Latest Updates----

・ Added extension settings page
・ Added a button in the navigation menu to open the extension settings
・ Added a feature to hide the "Make Avatar Public" button on the avatar information page
    ・By default, it is disabled, so please enable it in the settings.
・ Added a feature to hide the "Delete Avatar" button on the avatar information page
    ・By default, it is disabled, so please enable it in the settings.

----Safety---- 
This extension does not require any input of ID/password. To use the VRChat API, it sends the token (authentication information) stored in the cookie to the VRChat server. The extension itself does not retrieve any authentication information such as ID/password/token.

Source code and changelog: https://github.com/riku1227/Better-vrchat-DOT-com                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Better vrchat DOT com Better vrchat DOT com
ID joaffhoebddkohkafembmdkfmmcgmepj
Επίσημο URL https://chromewebstore.google.com/detail/better-vrchat-dot-com/joaffhoebddkohkafembmdkfmmcgmepj
Περιγραφή Extension to make VRChat official website more convenient
Μέγεθος Αρχείου 22.27 KB
Αριθμός Εγκαταστάσεων 2,121
Τρέχουσα Έκδοση 2.2.0
Τελευταία Ενημέρωση 2023-07-26
Ημερομηνία Δημοσίευσης 2020-04-09
Αξιολόγηση 4.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής riku1227
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extension_name__",
    "version": "2.2.0",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/vrchat.com\/home",
                "https:\/\/www.vrchat.com\/home",
                "https:\/\/vrchat.com\/home\/*",
                "https:\/\/www.vrchat.com\/home\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "*:\/\/vrchat.com\/*",
                "*:\/\/www.vrchat.com\/*"
            ]
        }
    ]
}