SYNCROOM Plus - Awesome plugin
Extend the functionality of SYNCROOM website.
Cos'è SYNCROOM Plus - Awesome plugin?
SYNCROOM Plus - Awesome plugin è un'estensione di Chrome sviluppata da https://koeda.me, e la sua funzione principale è "Extend the functionality of SYNCROOM website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SYNCROOM Plus - Awesome plugin
Scarica i file di estensione SYNCROOM Plus - Awesome plugin in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | gpgdkbjhojmcmkpldiopicipgolddmfg |
| URL Ufficiale | https://chromewebstore.google.com/detail/syncroom-plus-awesome-plu/gpgdkbjhojmcmkpldiopicipgolddmfg |
| Descrizione | Extend the functionality of SYNCROOM website. |
| Dimensione del File | 245 KB |
| Conteggio Installazioni | 2,768 |
| Versione Corrente | 2.3.2 |
| Ultimo Aggiornamento | 2023-06-21 |
| Data di Pubblicazione | 2020-08-19 |
| Valutazione | 4.50/5 Totale 12 Valutazioni |
| Sviluppatore | https://koeda.me |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://koeda.me/syncroomplus |
| URL della Pagina della Politica sulla Privacy | https://github.com/koedame/webextension-syncroom-plus/blob/develop/PRIVACY.md |
| Lingue Supportate | 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:\/\/*\/*"
]
} | |