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

O que é Tenhou score pane?

Tenhou score pane é uma extensão do Chrome desenvolvida por https://mahjong.ie, e sua principal característica é "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".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Tenhou score pane

Baixe arquivos de extensão Tenhou score pane 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 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                    

Informações Básicas da Extensão

Nome Tenhou score pane Tenhou score pane
ID bomgpekbpofhaconibaifacofoipomad
URL Oficial https://chromewebstore.google.com/detail/tenhou-score-pane/bomgpekbpofhaconibaifacofoipomad
Descrição 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
Tamanho do Arquivo 139 KB
Contagem de Instalações 68
Versão Atual 2.1.0
Última Atualização 2022-12-18
Data de Publicação 2020-08-24
Desenvolvedor https://mahjong.ie
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ApplySci/tenhou-scorepane
URL da Página de Ajuda https://github.com/ApplySci/tenhou-scorepane/issues
Idiomas Suportados 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"
        }
    ]
}