Pokemon Battle Predictor

Use machine learning to predict your opponent's moves and the outcome of the battle in Pokemon Showdown!

Pokemon Battle Predictorคืออะไร?

Pokemon Battle Predictor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://pokemonbattlepredictor.com และคุณลักษณะหลักของมันคือ "Use machine learning to predict your opponent's moves and the outcome of the battle in Pokemon Showdown!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pokemon Battle Predictor

ดาวน์โหลดไฟล์ส่วนขยาย Pokemon Battle Predictor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Look into the crystal ball to see what comes next!

Pokemon Battle Predictor is a tool made for Pokemon Showdown which predicts the chance of future events within a battle. With the power of TensorFlow machine learning algorithms trained on 100,000+ battles, this extension has the knowledge to know the probability of battle outcomes and what a player in your opponent's situation will do on the following turn with over 85% accuracy!

Following each turn, Pokemon Battle Predictor will tell you the current probability of:
• Who will win the battle
• Your opponent switching out or choosing a move
• Which move they will use if they stay in
• Which Pokemon they will switch to if they switch

Pokemon Battle Predictor can also be used while watching replays and other's live battles to see who has the advantage or what move they may use next.

The machine learning models the extension uses have to run on a server as they are too big to include within the extension itself. All the data sent and used by the model is completely anonymized, only retrieved when the user is aware the predictions will be made with data related to the battle currently on screen, and used for the purposes of the models only.

This extension is currently in beta, so if you find any bug or have any suggestions, please email [email protected] with them!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Pokemon Battle Predictor Pokemon Battle Predictor
ID efpcljpklgonmgjeiacfbfbpcecklfni
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pokemon-battle-predictor/efpcljpklgonmgjeiacfbfbpcecklfni
คำอธิบาย Use machine learning to predict your opponent's moves and the outcome of the battle in Pokemon Showdown!
ขนาดไฟล์ 53.7 KB
จำนวนการติดตั้ง 2,048
เวอร์ชันปัจจุบัน 0.21
อัปเดตครั้งล่าสุด 2021-04-04
วันที่เผยแพร่ 2020-06-24
คะแนน 3.44/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา https://pokemonbattlepredictor.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pokemon Battle Predictor",
    "version": "0.21",
    "description": "Use machine learning to predict your opponent's moves and the outcome of the battle in Pokemon Showdown!",
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.pokemonshowdown.com\/*",
                "*:\/\/replay.pokemonshowdown.com\/*",
                "*:\/\/*.psim.us\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon_16.png",
            "24": "icons\/icon_24.png",
            "32": "icons\/icon_32.png"
        }
    },
    "web_accessible_resources": [
        "\/pokemonBattlePredictor.js",
        "\/anon.js",
        "\/loading.png"
    ]
}