Simple Snake Game

Classic Snake Game in Your Browser

Co to jest Simple Snake Game?

Simple Snake Game to rozszerzenie Chrome opracowane przez https://helloacm.com, a jego główną funkcją jest „Classic Snake Game in Your Browser”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Simple Snake Game

Pobierz pliki rozszerzeń Simple Snake Game w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Simple Snake Game Simple Snake Game
ID fbbeckekbefhhmabpfjgpjobkmnfjbec
Oficjalny URL https://chromewebstore.google.com/detail/simple-snake-game/fbbeckekbefhhmabpfjgpjobkmnfjbec
Opis Classic Snake Game in Your Browser
Rozmiar pliku 1.06 MB
Liczba instalacji 637
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2022-01-10
Data Publikacji 2020-01-01
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper https://helloacm.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://helloacm.com/static/game/snake/
Adres URL Strony Pomocy https://helloacm.com/static/game/snake/
Adres URL Strony Polityki Prywatności https://helloacm.com/disclaimer
Obsługiwane Języki 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"
    }
}