Game-of-Life

Play Conway's Game of life on GitHub contribution board

Qu'est-ce que Game-of-Life ?

Game-of-Life est une extension Chrome développée par yuanchuan, et sa fonction principale est "Play Conway's Game of life on GitHub contribution board".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Game-of-Life

Téléchargez les fichiers d'extension Game-of-Life au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Play Conway's Game of life on GitHub contribution board                    

Informations de Base sur l'Extension

Nom Game-of-Life Game-of-Life
ID bhhddgpklpjchoemcgggncekimleaaok
URL Officiel https://chromewebstore.google.com/detail/game-of-life/bhhddgpklpjchoemcgggncekimleaaok
Description Play Conway's Game of life on GitHub contribution board
Taille du Fichier 14.59 KB
Nombre d'Installations 103
Version Actuelle 1.3.7
Dernière Mise à Jour 2019-05-27
Date de Publication 2019-05-26
Évaluation 3.80/5 Total 5 Évaluations
Développeur yuanchuan
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/yuanchuan/game-of-life
URL de la Page d'Aide https://github.com/yuanchuan/game-of-life
Langues Prises en Charge 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
}