Game-of-Life

Play Conway's Game of life on GitHub contribution board

ما هو Game-of-Life؟

Game-of-Life هو إضافة Chrome تم تطويرها بواسطة yuanchuan، والميزة الرئيسية لها هي "Play Conway's Game of life on GitHub contribution board".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Game-of-Life

قم بتنزيل ملفات الامتداد Game-of-Life بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
}