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
Eメール [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:\/\/*\/*"
            ]
        }
    ]
}