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 هو إضافة Chrome تم تطويرها بواسطة http://sleepycoder.github.io/2048، والميزة الرئيسية لها هي "AI to complete the 2048 game. It can help you play the 2048 game and make a 2048 tile easily.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة 2048 AI

قم بتنزيل ملفات الامتداد 2048 AI بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}