SYNCROOM Plus - Awesome plugin

Extend the functionality of SYNCROOM website.

什么是SYNCROOM Plus - Awesome plugin?

SYNCROOM Plus - Awesome plugin是由https://koeda.me开发的Chrome扩展程序,该扩展的主要功能是“Extend the functionality of SYNCROOM website.”。

扩展截图

screenshot
screenshot

下载SYNCROOM Plus - Awesome plugin扩展crx文件

下载SYNCROOM Plus - Awesome plugin扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Add functionality to the SYNCROOM player's site.

- 🌏 Multilingual support
- 👤 Member display of each room
- ⭐ Member favorite registration
- 🚫 Member blocking
- 🔔 Member online notification registration
- ⏳ Display of remaining time in the room
- 🔍 Advanced search
- 🚫 No vacancy display
- 🔔 Registration of full vacancy notification
- 🍎 Favicon
- 🔗 Automatic linking of URLs
- 🔖 Tag list display
- 🔐 Password Manager
- 📌 Notification information display
- 🔍 Member search
- 📝 Edit My Profile                    

扩展基本信息

名称 SYNCROOM Plus - Awesome plugin SYNCROOM Plus - Awesome plugin
ID gpgdkbjhojmcmkpldiopicipgolddmfg
官方URL https://chromewebstore.google.com/detail/syncroom-plus-awesome-plu/gpgdkbjhojmcmkpldiopicipgolddmfg
简介 Extend the functionality of SYNCROOM website.
文件大小 245 KB
安装次数 2,768
当前版本 2.3.2
更新时间 2023-06-21
上架时间 2020-08-19
评分 4.50/5 共12次评分
开发者 https://koeda.me
电子邮箱 [email protected]
付费类型 free
扩展官网 https://koeda.me/syncroomplus
隐私政策页面URL https://github.com/koedame/webextension-syncroom-plus/blob/develop/PRIVACY.md
支持的语言 en,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_appDesc__",
    "version": "2.3.2",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "default_locale": "ja",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "icons": {
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "action": {
        "default_title": "SYNCROOM Plus"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/syncroom.yamaha.com\/play\/",
                "https:\/\/syncroom.yamaha.com\/play\/*=*",
                "https:\/\/syncroom.yamaha.com\/global\/play\/",
                "https:\/\/syncroom.yamaha.com\/global\/play\/*=*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon_128.png",
                "images\/icon_34.png"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage",
        "notifications",
        "alarms"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ]
}