Simple Snake Game

Classic Snake Game in Your Browser

Apa itu Simple Snake Game?

Simple Snake Game adalah ekstensi Chrome yang dikembangkan oleh https://helloacm.com, dan fitur utamanya adalah "Classic Snake Game in Your Browser".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Simple Snake Game

Unduh file ekstensi Simple Snake Game dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Simple Snake Game Simple Snake Game
ID fbbeckekbefhhmabpfjgpjobkmnfjbec
URL Resmi https://chromewebstore.google.com/detail/simple-snake-game/fbbeckekbefhhmabpfjgpjobkmnfjbec
Deskripsi Classic Snake Game in Your Browser
Ukuran File 1.06 MB
Jumlah Instalasi 637
Versi Saat Ini 1.2
Terakhir Diperbarui 2022-01-10
Tanggal Publikasi 2020-01-01
Penilaian 1.00/5 Total 1 Penilaian
Pengembang https://helloacm.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://helloacm.com/static/game/snake/
URL Halaman Bantuan https://helloacm.com/static/game/snake/
URL Halaman Kebijakan Privasi https://helloacm.com/disclaimer
Bahasa yang Didukung 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"
    }
}