Game-of-Life

Play Conway's Game of life on GitHub contribution board

Vad är Game-of-Life?

Game-of-Life är en Chrome-tillägg utvecklad av yuanchuan, och dess huvudfunktion är "Play Conway's Game of life on GitHub contribution board".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Game-of-Life-förlängningens CRX-fil

Ladda ner Game-of-Life-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Play Conway's Game of life on GitHub contribution board                    

Grundläggande Information om Tillägg

Namn Game-of-Life Game-of-Life
ID bhhddgpklpjchoemcgggncekimleaaok
Officiell webbadress https://chromewebstore.google.com/detail/game-of-life/bhhddgpklpjchoemcgggncekimleaaok
Beskrivning Play Conway's Game of life on GitHub contribution board
Filstorlek 14.59 KB
Antal Installationer 103
Aktuell Version 1.3.7
Senast Uppdaterad 2019-05-27
Publiceringsdatum 2019-05-26
Betyg 3.80/5 Totalt 5 Betyg
Utvecklare yuanchuan
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/yuanchuan/game-of-life
Hjälpsida URL https://github.com/yuanchuan/game-of-life
Stödda Språk 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
}