Flappy Octocat

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

什麼是Flappy Octocat?

Flappy Octocat是由chxj1992開發的Chrome擴展程式,該擴展的主要功能是“a chrome extension to play a flappy bird like game on github contributions board!”。

擴展截圖

screenshot

下載Flappy Octocat擴展crx文件

下載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
官方網址 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\/*"
    ]
}