OGS Better sound
Replace sounds on Online Go Server.
What is OGS Better sound?
OGS Better sound is a Chrome extension developed by cjey, and its main feature is "Replace sounds on Online Go Server.".
Extension Screenshots
Download OGS Better sound Extension CRX File
Download OGS Better sound extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | OGS Better sound |
ID | pnieekjdbbpnfjdcaghnppgdcljhkmmo |
Official URL | https://chromewebstore.google.com/detail/ogs-better-sound/pnieekjdbbpnfjdcaghnppgdcljhkmmo |
Description | Replace sounds on Online Go Server. |
File Size | 1.29 MB |
Installation Count | 37 |
Current Version | 1.7.1 |
Last Updated | 2019-07-05 |
Publish Date | 2019-07-05 |
Rating | 5.00/5 Total 2 Ratings |
Developer | cjey |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } |