OGS Better sound
Replace sounds on Online Go Server.
Cos'è OGS Better sound?
OGS Better sound è un'estensione di Chrome sviluppata da cjey, e la sua funzione principale è "Replace sounds on Online Go Server.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OGS Better sound
Scarica i file di estensione OGS Better sound 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
This plugin allows you to select one of the follow languages for countdown • Chinese • Japanese • English ChangeLog: v1.7 Add stone sound on review and demo boards, fix game start sound v1.6 Disable counting sound until byoyomi actually starts v1.5 Fix issue with cutted sound v1.4 Added JP language support
Informazioni di Base sull'Estensione
Nome | OGS Better sound |
ID | pnieekjdbbpnfjdcaghnppgdcljhkmmo |
URL Ufficiale | https://chromewebstore.google.com/detail/ogs-better-sound/pnieekjdbbpnfjdcaghnppgdcljhkmmo |
Descrizione | Replace sounds on Online Go Server. |
Dimensione del File | 1.29 MB |
Conteggio Installazioni | 37 |
Versione Corrente | 1.7.1 |
Ultimo Aggiornamento | 2019-07-05 |
Data di Pubblicazione | 2019-07-05 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | cjey |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "OGS Better sound", "description": "Replace sounds on Online Go Server.", "browser_action": { "default_icon": { "32": "images\/icon32.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "default_title": "OGS Better sound", "default_popup": "popup.html" }, "icons": { "32": "images\/icon32.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "web_accessible_resources": [ "sound\/*.ogg", "pageScript.js" ], "content_scripts": [ { "matches": [ "*:\/\/*.online-go.com\/*" ], "js": [ "contentScript.js" ] } ], "permissions": [ "storage", "webRequest", "webRequestBlocking", "*:\/\/*.online-go.com\/*.ogg" ], "version": "1.7.1" } |