Snake
Play Snake!
什么是Snake?
Snake是由philip s开发的Chrome扩展程序,该扩展的主要功能是“Play Snake!”。
扩展截图
下载Snake扩展crx文件
下载Snake扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Play the classic snake game in a Google Chrome popup. Select a difficulty and use arrow keys to control. Control the snake to eat the food and grow, but be careful not to eat yourself or touch the wall.
扩展基本信息
名称 | Snake |
ID | goicnfoaggodccboajidgdckohdpfmib |
官方URL | https://chromewebstore.google.com/detail/snake/goicnfoaggodccboajidgdckohdpfmib |
简介 | Play Snake! |
文件大小 | 24.14 KB |
安装次数 | 444 |
当前版本 | 1.0 |
更新时间 | 2018-07-29 |
上架时间 | 2018-07-28 |
评分 | 5.00/5 共2次评分 |
开发者 | philip s |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Snake", "version": "1.0", "description": "Play Snake!", "manifest_version": 2, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Snake!", "default_popup": "popup.html" }, "icons": { "16": "s16.png", "32": "s32.png", "48": "s48.png", "64": "s64.png", "128": "s128.png" } } |