SYNCROOM Plus - Awesome plugin
Extend the functionality of SYNCROOM website.
SYNCROOM Plus - Awesome pluginคืออะไร?
SYNCROOM Plus - Awesome plugin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://koeda.me และคุณลักษณะหลักของมันคือ "Extend the functionality of SYNCROOM website."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SYNCROOM Plus - Awesome plugin
ดาวน์โหลดไฟล์ส่วนขยาย 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 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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:\/\/*\/*"
]
} | |