Simple Snake Game

Classic Snake Game in Your Browser

O que é Simple Snake Game?

Simple Snake Game é uma extensão do Chrome desenvolvida por https://helloacm.com, e sua principal característica é "Classic Snake Game in Your Browser".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Simple Snake Game

Baixe arquivos de extensão Simple Snake Game no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Simple Snake Game Simple Snake Game
ID fbbeckekbefhhmabpfjgpjobkmnfjbec
URL Oficial https://chromewebstore.google.com/detail/simple-snake-game/fbbeckekbefhhmabpfjgpjobkmnfjbec
Descrição Classic Snake Game in Your Browser
Tamanho do Arquivo 1.06 MB
Contagem de Instalações 637
Versão Atual 1.2
Última Atualização 2022-01-10
Data de Publicação 2020-01-01
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor https://helloacm.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://helloacm.com/static/game/snake/
URL da Página de Ajuda https://helloacm.com/static/game/snake/
URL da Página de Política de Privacidade https://helloacm.com/disclaimer
Idiomas Suportados 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"
    }
}