Tenhou score pane
Adds a pane to the tenhou.net and ron2.jp clients (/3, /4) in-game which contains the score history of the hands in the current game
Tenhou score pane란 무엇입니까?
Tenhou score pane은(는) https://mahjong.ie에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a pane to the tenhou.net and ron2.jp clients (/3, /4) in-game which contains the score history of the hands in the current game"입니다.
확장 프로그램 스크린샷
Tenhou score pane 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This adds a scoring pane to the right-hand side of the Ron2 and tenhou mahjong html5 clients, which lists the results of each hand. Support is available on the Mahjong Discord - I'm ApplySci, just ping me there. Great for streamers. Great for anyone who wants to follow how their game is progressing. v2 now works with the new client at Ron2.jp/3 , as well as the tenhou clients at tenhou.net/3 and tenhou.net/4
확장 프로그램 기본 정보
이름 | Tenhou score pane |
ID | bomgpekbpofhaconibaifacofoipomad |
공식 URL | https://chromewebstore.google.com/detail/tenhou-score-pane/bomgpekbpofhaconibaifacofoipomad |
설명 | Adds a pane to the tenhou.net and ron2.jp clients (/3, /4) in-game which contains the score history of the hands in the current game |
파일 크기 | 139 KB |
설치 횟수 | 68 |
현재 버전 | 2.1.0 |
최근 업데이트 | 2022-12-18 |
출시 날짜 | 2020-08-24 |
개발자 | https://mahjong.ie |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ApplySci/tenhou-scorepane |
도움말 페이지 URL | https://github.com/ApplySci/tenhou-scorepane/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tenhou score pane", "version": "2.1.0", "description": "Adds a pane to the tenhou.net and ron2.jp clients (\/3, \/4) in-game which contains the score history of the hands in the current game", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/tenhou.net\/0*", "*:\/\/tenhou.net\/4*", "*:\/\/tenhou.net\/3*", "*:\/\/ron2.jp\/3*" ], "js": [ "jquery.js", "chart.js", "content.js" ], "css": [ "content.css" ], "run_at": "document_idle" } ] } |