Game-of-Life

Play Conway's Game of life on GitHub contribution board

什麼是Game-of-Life?

Game-of-Life是由yuanchuan開發的Chrome擴展程式,該擴展的主要功能是“Play Conway's Game of life on GitHub contribution board”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Game-of-Life擴展crx文件

下載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
官方網址 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
}