OGS Better sound
Replace sounds on Online Go Server.
OGS Better sound란 무엇입니까?
OGS Better sound은(는) cjey에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace sounds on Online Go Server."입니다.
확장 프로그램 스크린샷
OGS Better sound 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | OGS Better sound |
ID | pnieekjdbbpnfjdcaghnppgdcljhkmmo |
공식 URL | https://chromewebstore.google.com/detail/ogs-better-sound/pnieekjdbbpnfjdcaghnppgdcljhkmmo |
설명 | Replace sounds on Online Go Server. |
파일 크기 | 1.29 MB |
설치 횟수 | 37 |
현재 버전 | 1.7.1 |
최근 업데이트 | 2019-07-05 |
출시 날짜 | 2019-07-05 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | cjey |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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" } |