Snake for Chrome

Chrome's offline snake game

ما هو Snake for Chrome؟

Snake for Chrome هو إضافة Chrome تم تطويرها بواسطة tamarabilenkotn، والميزة الرئيسية لها هي "Chrome's offline snake game".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Snake for Chrome

قم بتنزيل ملفات الامتداد Snake for Chrome بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Snake - a simple game from Chrome offline mode. Press Enter to start the game. Use arrows to change snake direction.                    

معلومات أساسية عن التمديد

الاسم Snake for Chrome Snake for Chrome
ID nabjdccbcfponlofkobmigcgfaddnkll
عنوان URL الرسمي https://chrome.google.com/webstore/detail/snake-for-chrome/nabjdccbcfponlofkobmigcgfaddnkll
الوصف Chrome's offline snake game
حجم الملف 69.24 KB
عدد التثبيتات 30,416
النسخة الحالية 2.8
آخر تحديث 2023-05-12
تاريخ النشر 2020-09-26
تقييم 4.45/5 مجموع تقييمات 22
المطور tamarabilenkotn
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "32.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "description": "Chrome's offline snake game",
    "icons": {
        "128": "64.png",
        "32": "32.png",
        "48": "64.png"
    },
    "permissions": [
        "alarms",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "exclude_matches": [],
            "js": [
                "pol.js"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "manifest_version": 3,
    "name": "Snake for Chrome",
    "options_page": "option.html",
    "minimum_chrome_version": "101",
    "version": "2.8",
    "web_accessible_resources": [
        {
            "resources": [
                "polyfill_attach.js",
                "polyfill.min.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}