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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tenhou score pane एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
        }
    ]
}