VRCFriendCheck

Browser extension that allows you to check the online status of friends of VRChat and notify you online.

Что такое VRCFriendCheck?

VRCFriendCheck - это расширение Chrome, разработанное mnao305, и его основная функция - "Browser extension that allows you to check the online status of friends of VRChat and notify you online.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения VRCFriendCheck

Скачайте файлы расширений VRCFriendCheck в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Main function
· Online / offline confirmation of friends
· Notify me when my friend is online
· World where online friends exist, instance confirmation
· Join to that instance
· Sort by name and instance ID order
· Function to display only Favorite Friends
· Show number of friends online over extension icon

To use this extension, you need to log in with the VRChat account.
When logging in, account information is not sent / stored to servers other than this extended function or VRChat official.

GitHub: https://github.com/mnao305/VRCFriendCheck

Since the VRChat API used in this extension is based on unofficial documentation and it is unclear whether access to this API is officially granted, you use this app at your own risk.  
The developer is not responsible for any damage caused by the use of this extension.

I translate this sentence using Google Translate.                    

Основная информация о расширении

Название VRCFriendCheck VRCFriendCheck
ID fkhfmlkfiaafmoaobaofhldnlgapekhl
Официальный URL https://chromewebstore.google.com/detail/vrcfriendcheck/fkhfmlkfiaafmoaobaofhldnlgapekhl
Описание Browser extension that allows you to check the online status of friends of VRChat and notify you online.
Размер файла 354 KB
Количество установок 1,802
Текущая Версия 1.5.6
Последнее Обновление 2021-04-16
Дата публикации 2020-04-23
Рейтинг 3.50/5 Всего 12 оценок
Разработчик mnao305
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/mnao305/VRCFriendCheck
URL страницы помощи https://github.com/mnao305/VRCFriendCheck/issues
Поддерживаемые языки en,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VRCFriendCheck",
    "description": "__MSG_description__",
    "version": "1.5.6",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "VRCFriendCheck",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "https:\/\/api.vrchat.cloud\/*",
        "alarms",
        "storage",
        "notifications"
    ]
}