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."입니다.
확장 프로그램 스크린샷
SYNCROOM Plus - Awesome plugin 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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:\/\/*\/*" ] } |