Simple Snake Game

Classic Snake Game in Your Browser

ما هو Simple Snake Game؟

Simple Snake Game هو إضافة Chrome تم تطويرها بواسطة https://helloacm.com، والميزة الرئيسية لها هي "Classic Snake Game in Your Browser".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Simple Snake Game

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

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

                        Simple Snake Game: Easy accessible when you want to play the classic snake game.

Source Code:
https://github.com/DoctorLai/SnakeGame

If you like this game, please support a cup of coffee, thanks :)
https://helloacm.com/out/buymecoffee                    

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

الاسم Simple Snake Game Simple Snake Game
ID fbbeckekbefhhmabpfjgpjobkmnfjbec
عنوان URL الرسمي https://chromewebstore.google.com/detail/simple-snake-game/fbbeckekbefhhmabpfjgpjobkmnfjbec
الوصف Classic Snake Game in Your Browser
حجم الملف 1.06 MB
عدد التثبيتات 637
النسخة الحالية 1.2
آخر تحديث 2022-01-10
تاريخ النشر 2020-01-01
تقييم 1.00/5 مجموع تقييمات 1
المطور https://helloacm.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://helloacm.com/static/game/snake/
عنوان صفحة المساعدة https://helloacm.com/static/game/snake/
عنوان صفحة سياسة الخصوصية https://helloacm.com/disclaimer
اللغات المدعومة en,en-GB,en-US,pt-BR,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple Snake Game",
    "default_locale": "en",
    "short_name": "SnakeGame",
    "version": "1.2",
    "action": {
        "default_icon": "icon.png",
        "default_title": "Simple Snake Game",
        "default_popup": "main.html"
    },
    "offline_enabled": true,
    "author": "justyy",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "description": "Classic Snake Game in Your Browser",
    "web_accessible_resources": [
        {
            "resources": [
                "js\/*",
                "images\/*",
                "bs\/*"
            ],
            "extension_ids": [
                "fbbeckekbefhhmabpfjgpjobkmnfjbec"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "js\/background.js"
    }
}