Simple Snake Game

Classic Snake Game in Your Browser

什么是Simple Snake Game?

Simple Snake Game是由https://helloacm.com开发的Chrome扩展程序,该扩展的主要功能是“Classic Snake Game in Your Browser”。

扩展截图

screenshot
screenshot

下载Simple Snake Game扩展crx文件

下载Simple Snake Game扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Simple Snake Game Simple Snake Game
ID fbbeckekbefhhmabpfjgpjobkmnfjbec
官方URL https://chromewebstore.google.com/detail/simple-snake-game/fbbeckekbefhhmabpfjgpjobkmnfjbec
简介 Classic Snake Game in Your Browser
文件大小 1.06 MB
安装次数 637
当前版本 1.2
更新时间 2022-01-10
上架时间 2020-01-01
评分 1.00/5 共1次评分
开发者 https://helloacm.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://helloacm.com/static/game/snake/
帮助页面URL https://helloacm.com/static/game/snake/
隐私政策页面URL https://helloacm.com/disclaimer
支持的语言 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"
    }
}