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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้าช่วยเหลือ https://helloacm.com/static/game/snake/
URL หน้านโยบายความเป็นส่วนตัว 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"
    }
}