Simple Snake Game

Classic Snake Game in Your Browser

Cos'è Simple Snake Game?

Simple Snake Game è un'estensione di Chrome sviluppata da https://helloacm.com, e la sua funzione principale è "Classic Snake Game in Your Browser".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Simple Snake Game

Scarica i file di estensione Simple Snake Game in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Simple Snake Game Simple Snake Game
ID fbbeckekbefhhmabpfjgpjobkmnfjbec
URL Ufficiale https://chromewebstore.google.com/detail/simple-snake-game/fbbeckekbefhhmabpfjgpjobkmnfjbec
Descrizione Classic Snake Game in Your Browser
Dimensione del File 1.06 MB
Conteggio Installazioni 637
Versione Corrente 1.2
Ultimo Aggiornamento 2022-01-10
Data di Pubblicazione 2020-01-01
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore https://helloacm.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://helloacm.com/static/game/snake/
URL della Pagina di Aiuto https://helloacm.com/static/game/snake/
URL della Pagina della Politica sulla Privacy https://helloacm.com/disclaimer
Lingue Supportate 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"
    }
}