Game-of-Life

Play Conway's Game of life on GitHub contribution board

Game-of-Life là gì?

Game-of-Life là một tiện ích mở rộng Chrome được phát triển bởi yuanchuan, và tính năng chính của nó là "Play Conway's Game of life on GitHub contribution board".

Ả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 Game-of-Life

Tải xuống các tệp mở rộng Game-of-Life 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

                        Play Conway's Game of life on GitHub contribution board                    

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

Tên Game-of-Life Game-of-Life
ID bhhddgpklpjchoemcgggncekimleaaok
URL Chính Thức https://chromewebstore.google.com/detail/game-of-life/bhhddgpklpjchoemcgggncekimleaaok
Mô tả Play Conway's Game of life on GitHub contribution board
Kích Thước Tệp 14.59 KB
Số Lần Cài Đặt 103
Phiên Bản Hiện Tại 1.3.7
Cập Nhật Lần Cuối 2019-05-27
Ngày Phát Hành 2019-05-26
Đánh Giá 3.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển yuanchuan
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/yuanchuan/game-of-life
URL Trang Trợ Giúp https://github.com/yuanchuan/game-of-life
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Game-of-Life",
    "version": "1.3.7",
    "description": "Play Conway's Game of life on GitHub contribution board",
    "icons": {
        "16": "icons\/logo48.png",
        "48": "icons\/logo128.png",
        "128": "icons\/logo256.png",
        "256": "icons\/logo256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/github.com\/new\/*",
                "https:\/\/github.com\/settings\/*",
                "https:\/\/github.com\/pricing\/*",
                "https:\/\/github.com\/blog\/*",
                "https:\/\/github.com\/contact\/*",
                "https:\/\/github.com\/site\/*",
                "https:\/\/github.com\/about\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}