Simple Snake Game

Classic Snake Game in Your Browser

Simple Snake Game là gì?

Simple Snake Game là một tiện ích mở rộng Chrome được phát triển bởi https://helloacm.com, và tính năng chính của nó là "Classic Snake Game in Your Browser".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Simple Snake Game

Tải xuống các tệp mở rộng Simple Snake Game dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Simple Snake Game Simple Snake Game
ID fbbeckekbefhhmabpfjgpjobkmnfjbec
URL Chính Thức https://chromewebstore.google.com/detail/simple-snake-game/fbbeckekbefhhmabpfjgpjobkmnfjbec
Mô tả Classic Snake Game in Your Browser
Kích Thước Tệp 1.06 MB
Số Lần Cài Đặt 637
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2022-01-10
Ngày Phát Hành 2020-01-01
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://helloacm.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://helloacm.com/static/game/snake/
URL Trang Trợ Giúp https://helloacm.com/static/game/snake/
URL Trang Chính Sách Bảo Mật https://helloacm.com/disclaimer
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}