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
官方網址 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"
    }
}