Game-of-Life

Play Conway's Game of life on GitHub contribution board

Game-of-Lifeคืออะไร?

Game-of-Life เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yuanchuan และคุณลักษณะหลักของมันคือ "Play Conway's Game of life on GitHub contribution board"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Play Conway's Game of life on GitHub contribution board                    

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

ชื่อ Game-of-Life Game-of-Life
ID bhhddgpklpjchoemcgggncekimleaaok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/game-of-life/bhhddgpklpjchoemcgggncekimleaaok
คำอธิบาย Play Conway's Game of life on GitHub contribution board
ขนาดไฟล์ 14.59 KB
จำนวนการติดตั้ง 103
เวอร์ชันปัจจุบัน 1.3.7
อัปเดตครั้งล่าสุด 2019-05-27
วันที่เผยแพร่ 2019-05-26
คะแนน 3.80/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา yuanchuan
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/yuanchuan/game-of-life
URL หน้าช่วยเหลือ https://github.com/yuanchuan/game-of-life
ภาษาที่รองรับ 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
}