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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}