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
官方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
}