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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "AI to complete the 2048 game. It can help you play the 2048 game and make a 2048 tile easily."।

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

screenshot
screenshot
screenshot

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

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