Flappy Octocat

a chrome extension to play a flappy bird like game on github contributions board!

Flappy Octocatคืออะไร?

Flappy Octocat เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chxj1992 และคุณลักษณะหลักของมันคือ "a chrome extension to play a flappy bird like game on github contributions board!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Flappy Octocat

ดาวน์โหลดไฟล์ส่วนขยาย Flappy Octocat ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        a chrome extension to play a flappy bird like game on github contributions board!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Flappy Octocat Flappy Octocat
ID jjjhhlomhbdmnfgaccmddhmjfeekjlbl
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/flappy-octocat/jjjhhlomhbdmnfgaccmddhmjfeekjlbl
คำอธิบาย a chrome extension to play a flappy bird like game on github contributions board!
ขนาดไฟล์ 749 KB
จำนวนการติดตั้ง 52
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2020-01-07
วันที่เผยแพร่ 2020-01-07
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา chxj1992
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/chxj1992/flappy-octocat
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Flappy Octocat",
    "description": "a chrome extension to play a flappy bird like game on github contributions board!",
    "version": "1.0.3",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "page_action": {
        "default_icon": "icons\/icon-48.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "contentscripts\/game.js",
                "contentscripts\/board.js",
                "contentscripts\/controls.js",
                "contentscripts\/button.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/github.com\/*"
    ]
}