Game-of-Life

Play Conway's Game of life on GitHub contribution board

O que é Game-of-Life?

Game-of-Life é uma extensão do Chrome desenvolvida por yuanchuan, e sua principal característica é "Play Conway's Game of life on GitHub contribution board".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Game-of-Life

Baixe arquivos de extensão Game-of-Life no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Play Conway's Game of life on GitHub contribution board                    

Informações Básicas da Extensão

Nome Game-of-Life Game-of-Life
ID bhhddgpklpjchoemcgggncekimleaaok
URL Oficial https://chromewebstore.google.com/detail/game-of-life/bhhddgpklpjchoemcgggncekimleaaok
Descrição Play Conway's Game of life on GitHub contribution board
Tamanho do Arquivo 14.59 KB
Contagem de Instalações 103
Versão Atual 1.3.7
Última Atualização 2019-05-27
Data de Publicação 2019-05-26
Classificação 3.80/5 Total de 5 Avaliações
Desenvolvedor yuanchuan
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/yuanchuan/game-of-life
URL da Página de Ajuda https://github.com/yuanchuan/game-of-life
Idiomas Suportados 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
}