Simple Snake Game

Classic Snake Game in Your Browser

Wat is Simple Snake Game?

Simple Snake Game is een Chrome-extensie ontwikkeld door https://helloacm.com, en de belangrijkste functie is "Classic Snake Game in Your Browser".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Simple Snake Game

Download Simple Snake Game-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Simple Snake Game Simple Snake Game
ID fbbeckekbefhhmabpfjgpjobkmnfjbec
Officiële URL https://chromewebstore.google.com/detail/simple-snake-game/fbbeckekbefhhmabpfjgpjobkmnfjbec
Beschrijving Classic Snake Game in Your Browser
Bestandsgrootte 1.06 MB
Aantal Installaties 637
Huidige Versie 1.2
Laatst Bijgewerkt 2022-01-10
Publicatiedatum 2020-01-01
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://helloacm.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://helloacm.com/static/game/snake/
Help Pagina-URL https://helloacm.com/static/game/snake/
URL van de Privacybeleid Pagina https://helloacm.com/disclaimer
Ondersteunde Talen 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"
    }
}