Snake for Chrome

Chrome's offline snake game

Snake for Chrome là gì?

Snake for Chrome là một tiện ích mở rộng Chrome được phát triển bởi tamarabilenkotn, và tính năng chính của nó là "Chrome's offline snake game".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Snake for Chrome

Tải xuống các tệp mở rộng Snake for Chrome dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Snake for Chrome Snake for Chrome
ID nabjdccbcfponlofkobmigcgfaddnkll
URL Chính Thức https://chrome.google.com/webstore/detail/snake-for-chrome/nabjdccbcfponlofkobmigcgfaddnkll
Mô tả Chrome's offline snake game
Kích Thước Tệp 69.24 KB
Số Lần Cài Đặt 30,416
Phiên Bản Hiện Tại 2.8
Cập Nhật Lần Cuối 2023-05-12
Ngày Phát Hành 2020-09-26
Đánh Giá 4.45/5 Tổng số 22 Đánh Giá
Nhà Phát Triển tamarabilenkotn
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}