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คืออะไร?

Game of Life เป็นส่วนขยายของ Chrome ที่พัฒนาโดย notathrowaway688 และคุณลักษณะหลักของมันคือ "A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Game of Life

ดาวน์โหลดไฟล์ส่วนขยาย Game of Life ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Game of Life Game of Life
ID gdmhealdhgadiggcdemaddblpbklepal
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/game-of-life/gdmhealdhgadiggcdemaddblpbklepal
คำอธิบาย A classic version of Conway's Game of Life. Controls: - Left click on the grid to place cells. - Space to start a simulation. -…
ขนาดไฟล์ 5.92 KB
จำนวนการติดตั้ง 391
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-09-30
วันที่เผยแพร่ 2020-09-29
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา notathrowaway688
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    }
}