Snake for Chrome

Chrome's offline snake game

What is Snake for Chrome?

Snake for Chrome is a Chrome extension developed by tamarabilenkotn, and its main feature is "Chrome's offline snake game".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Snake for Chrome Extension CRX File

Download Snake for Chrome 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

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

Extension Basic Information

Name Snake for Chrome Snake for Chrome
ID nabjdccbcfponlofkobmigcgfaddnkll
Official URL https://chrome.google.com/webstore/detail/snake-for-chrome/nabjdccbcfponlofkobmigcgfaddnkll
Description Chrome's offline snake game
File Size 69.24 KB
Installation Count 30,416
Current Version 2.8
Last Updated 2023-05-12
Publish Date 2020-09-26
Rating 4.45/5 Total 22 Ratings
Developer tamarabilenkotn
Email [email protected]
Payment Type free
Supported Languages 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:\/\/*\/*"
            ]
        }
    ]
}