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!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Flappy Octocat
قم بتنزيل ملفات الامتداد Flappy Octocat بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
a chrome extension to play a flappy bird like game on github contributions board!
معلومات أساسية عن التمديد
الاسم | |
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\/*" ] } |