Game-of-Life

Play Conway's Game of life on GitHub contribution board

Was ist Game-of-Life?

Game-of-Life ist eine Chrome-Erweiterung, die von yuanchuan entwickelt wurde, und ihr Hauptmerkmal ist "Play Conway's Game of life on GitHub contribution board".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Game-of-Life-Erweiterungs-CRX-Datei herunterladen

Laden Sie Game-of-Life-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Play Conway's Game of life on GitHub contribution board                    

Grundlegende Informationen zur Erweiterung

Name Game-of-Life Game-of-Life
ID bhhddgpklpjchoemcgggncekimleaaok
Offizielle URL https://chromewebstore.google.com/detail/game-of-life/bhhddgpklpjchoemcgggncekimleaaok
Beschreibung Play Conway's Game of life on GitHub contribution board
Dateigröße 14.59 KB
Installationsanzahl 103
Aktuelle Version 1.3.7
Letztes Update 2019-05-27
Veröffentlichungsdatum 2019-05-26
Bewertung 3.80/5 Insgesamt 5 Bewertungen
Entwickler yuanchuan
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/yuanchuan/game-of-life
Hilfeseite URL https://github.com/yuanchuan/game-of-life
Unterstützte Sprachen 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
}