Snake game
A fun game to play while waiting for things
What is Snake game?
Snake game is a Chrome extension developed by Gecko Software, and its main feature is "A fun game to play while waiting for things".
Extension Screenshots
Download Snake game Extension CRX File
Download Snake game extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A simple game to play while you're waiting for websites to load! Move the snake around with the arrow keys, eat the red dots to grow bigger, and avoid hitting your own tail. Code functions from codepen.io
Extension Basic Information
Name | Snake game |
ID | lljpgahbeilaecaaiecghpmfajfeclge |
Official URL | https://chromewebstore.google.com/detail/snake-game/lljpgahbeilaecaaiecghpmfajfeclge |
Description | A fun game to play while waiting for things |
File Size | 625 KB |
Installation Count | 20,000 |
Current Version | 2.9.0 |
Last Updated | 2019-08-19 |
Publish Date | 2019-08-18 |
Rating | 4.49/5 Total 67 Ratings |
Developer | Gecko Software |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Snake game", "version": "2.9.0", "options_page": "options.html", "permissions": [ "storage" ], "description": "A fun game to play while waiting for things", "offline_enabled": true, "author": "Ian", "icons": { "16": "\/assets\/images\/icon.png", "48": "\/assets\/images\/icon.png", "128": "\/assets\/images\/icon.png" }, "browser_action": { "default_icon": "\/assets\/images\/icon.png", "default_popup": "popup.html" } } |