2048 AI

AI to complete the 2048 game. It can help you play the 2048 game and make a 2048 tile easily.

2048 AIとは何ですか?

2048 AIはhttp://sleepycoder.github.io/2048によって開発されたChromeの拡張機能で、その主な機能は「AI to complete the 2048 game. It can help you play the 2048 game and make a 2048 tile easily.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

2048 AI拡張機能のCRXファイルをダウンロード

2048 AI拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Usage: 
Install this extension and go to the game's official website: https://play2048.co/ (used to be http://gabrielecirulli.github.io/2048/, but redirects to https://play2048.co/ now)

Press '1' to go automatically.
Press '2' to get faster.
Press '3' to go one step.
Press '0' to stop.


You can also visit my branched website to play the AI with any browser: http://sleepycoder.github.io/2048/                    

拡張機能の基本情報

名前 2048 AI 2048 AI
ID ggiomnbaioeocdipdgfllknhkpcnggjk
公式URL https://chrome.google.com/webstore/detail/2048-ai/ggiomnbaioeocdipdgfllknhkpcnggjk
説明 AI to complete the 2048 game. It can help you play the 2048 game and make a 2048 tile easily.
ファイルサイズ 20.13 KB
インストール数 3,000
現在のバージョン 1.9
最終更新日 2020-05-05
公開日 2020-05-05
評価 3.89/5 合計 98 レビュー
開発者 http://sleepycoder.github.io/2048
支払い方法 free
拡張機能のウェブサイト http://sleepycoder.github.io/2048/
対応言語 en,zh-CN
manifest.json
{
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "run.js"
            ],
            "matches": [
                "http:\/\/gabrielecirulli.github.io\/2048\/",
                "https:\/\/gabrielecirulli.github.io\/2048\/",
                "https:\/\/play2048.co\/",
                "http:\/\/play2048.co\/"
            ],
            "run_at": "document_start"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_appDesc__",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png"
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgyrWv4fNaKpLLdlAyXvNhjSK09c8XlnwzkccjDkgUbKagJuARSaBPhxgW1IPFVokVA3HZdCK4wZrhEnuwmIxLzOFSJuUNrfAeNUhwcpa2Vw51PPLh2ofXGUG61u1o7jwsDdfCXgPMcRd+eosxznrbwcH0q97m\/a+lPey3XHvREmtvvRpPKceMNZvjWsmmP\/HyWEH+O3hXZVgBiN4LA44eIt6rPkNWcBOnUUsrdeqrZDNnrxmSwu8rXrJkp2iOZbpsJwJjJKm8TTr9rBvi\/QZ\/zs9LgXidohtOWNdKHSODC+Y\/SWTfQdkYWBuahqGCpbinfHI\/5slF7sCAZAuQrA65QIDAQAB",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "2048 AI"
    },
    "permissions": [
        "declarativeContent"
    ],
    "short_name": "__MSG_appName__",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.9",
    "web_accessible_resources": [
        "ai.js"
    ]
}