Flappy Octocat
a chrome extension to play a flappy bird like game on github contributions board!
Apa itu Flappy Octocat?
Flappy Octocat adalah ekstensi Chrome yang dikembangkan oleh chxj1992, dan fitur utamanya adalah "a chrome extension to play a flappy bird like game on github contributions board!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Flappy Octocat
Unduh file ekstensi Flappy Octocat dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
a chrome extension to play a flappy bird like game on github contributions board!
Informasi Dasar Ekstensi
Nama | |
ID | jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
URL Resmi | https://chrome.google.com/webstore/detail/flappy-octocat/jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
Deskripsi | a chrome extension to play a flappy bird like game on github contributions board! |
Ukuran File | 749 KB |
Jumlah Instalasi | 52 |
Versi Saat Ini | 1.0.3 |
Terakhir Diperbarui | 2020-01-07 |
Tanggal Publikasi | 2020-01-07 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | chxj1992 |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/chxj1992/flappy-octocat |
Bahasa yang Didukung | 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\/*" ] } |