Snake for Chrome

Chrome's offline snake game

什么是Snake for Chrome?

Snake for Chrome是由tamarabilenkotn开发的Chrome扩展程序,该扩展的主要功能是“Chrome's offline snake game”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Snake for Chrome扩展crx文件

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

扩展使用说明

                        Snake - a simple game from Chrome offline mode. Press Enter to start the game. Use arrows to change snake direction.                    

扩展基本信息

名称 Snake for Chrome Snake for Chrome
ID nabjdccbcfponlofkobmigcgfaddnkll
官方URL https://chrome.google.com/webstore/detail/snake-for-chrome/nabjdccbcfponlofkobmigcgfaddnkll
简介 Chrome's offline snake game
文件大小 69.24 KB
安装次数 30,416
当前版本 2.8
更新时间 2023-05-12
上架时间 2020-09-26
评分 4.45/5 共22次评分
开发者 tamarabilenkotn
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "32.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "description": "Chrome's offline snake game",
    "icons": {
        "128": "64.png",
        "32": "32.png",
        "48": "64.png"
    },
    "permissions": [
        "alarms",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "exclude_matches": [],
            "js": [
                "pol.js"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "manifest_version": 3,
    "name": "Snake for Chrome",
    "options_page": "option.html",
    "minimum_chrome_version": "101",
    "version": "2.8",
    "web_accessible_resources": [
        {
            "resources": [
                "polyfill_attach.js",
                "polyfill.min.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}