Game of Life

A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -…

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 notathrowaway688, và tính năng chính của nó là "A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -…".

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

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

                        A classic version of Conway's Game of Life.

Controls:
- Left click on the grid to place cells.
- Space to start a simulation.
- Right arrow key to step through the simulation.

Rule for Game of Life: 
- Any live cell with fewer than two live neighbours dies, as if by underpopulation.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overpopulation.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

See Wiki: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life.                    

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

Tên Game of Life Game of Life
ID gdmhealdhgadiggcdemaddblpbklepal
URL Chính Thức https://chromewebstore.google.com/detail/game-of-life/gdmhealdhgadiggcdemaddblpbklepal
Mô tả A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -…
Kích Thước Tệp 5.92 KB
Số Lần Cài Đặt 391
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-09-30
Ngày Phát Hành 2020-09-29
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển notathrowaway688
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",
    "name": "Game of Life",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icons\/defaultIcon.png",
        "default_popup": "index.html",
        "default_title": "Game of Life"
    },
    "icons": {
        "128": "icons\/icon.png"
    }
}