Simple Snake Game

Classic Snake Game in Your Browser

Vad är Simple Snake Game?

Simple Snake Game är en Chrome-tillägg utvecklad av https://helloacm.com, och dess huvudfunktion är "Classic Snake Game in Your Browser".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Simple Snake Game-förlängningens CRX-fil

Ladda ner Simple Snake Game-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Simple Snake Game Simple Snake Game
ID fbbeckekbefhhmabpfjgpjobkmnfjbec
Officiell webbadress https://chromewebstore.google.com/detail/simple-snake-game/fbbeckekbefhhmabpfjgpjobkmnfjbec
Beskrivning Classic Snake Game in Your Browser
Filstorlek 1.06 MB
Antal Installationer 637
Aktuell Version 1.2
Senast Uppdaterad 2022-01-10
Publiceringsdatum 2020-01-01
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare https://helloacm.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://helloacm.com/static/game/snake/
Hjälpsida URL https://helloacm.com/static/game/snake/
URL till Sekretesspolicy Sidan https://helloacm.com/disclaimer
Stödda Språk 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"
    }
}