OGS Better sound
Replace sounds on Online Go Server.
O que é OGS Better sound?
OGS Better sound é uma extensão do Chrome desenvolvida por cjey, e sua principal característica é "Replace sounds on Online Go Server.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão OGS Better sound
Baixe arquivos de extensão OGS Better sound no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | OGS Better sound |
ID | pnieekjdbbpnfjdcaghnppgdcljhkmmo |
URL Oficial | https://chromewebstore.google.com/detail/ogs-better-sound/pnieekjdbbpnfjdcaghnppgdcljhkmmo |
Descrição | Replace sounds on Online Go Server. |
Tamanho do Arquivo | 1.29 MB |
Contagem de Instalações | 37 |
Versão Atual | 1.7.1 |
Última Atualização | 2019-07-05 |
Data de Publicação | 2019-07-05 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | cjey |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } |