Flappy Octocat
a chrome extension to play a flappy bird like game on github contributions board!
Co to jest Flappy Octocat?
Flappy Octocat to rozszerzenie Chrome opracowane przez chxj1992, a jego główną funkcją jest „a chrome extension to play a flappy bird like game on github contributions board!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Flappy Octocat
Pobierz pliki rozszerzeń Flappy Octocat w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
a chrome extension to play a flappy bird like game on github contributions board!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
Oficjalny URL | https://chrome.google.com/webstore/detail/flappy-octocat/jjjhhlomhbdmnfgaccmddhmjfeekjlbl |
Opis | a chrome extension to play a flappy bird like game on github contributions board! |
Rozmiar pliku | 749 KB |
Liczba instalacji | 52 |
Aktualna Wersja | 1.0.3 |
Ostatnia Aktualizacja | 2020-01-07 |
Data Publikacji | 2020-01-07 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | chxj1992 |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/chxj1992/flappy-octocat |
Obsługiwane Języki | 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\/*" ] } |