Check-In Chicken

This extension will help users study, as well as help keep their mental health positive

Check-In Chickenคืออะไร?

Check-In Chicken เป็นส่วนขยายของ Chrome ที่พัฒนาโดย spencerfulgham และคุณลักษณะหลักของมันคือ "This extension will help users study, as well as help keep their mental health positive"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Check-In Chicken

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

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

                        Check-In Chicken!
Inspiration
Given the circumstances of the world right now, mental health is steadily being ignored. This is especially bad with students. So we developed a relatively unobtrusive way of checking in with yourself, your mental health, and the world, all while being productive!

What it does
We developed a Chrome Extension that helps you stay on task for certain set "focus times" and gives you free time for timed breaks, as well as a "mental health vibe check" in order to provide needed reassurance and helpful tips to a productive and healthy work environment. Check-In Chicken is made to help you be productive, but not at the cost of your mental health.

How we built it
Using resources such as Google Developer, we created the chrome web extension.

Challenges we ran into
The Pomodoro-style timer was difficult to implement, as it features two distinct timers cycling through each other to monitor work-time and break-time. This challenge was highlighted the inability for chrome extensions to store data meaningfully without the use of database. Learning the structure of how Chrome extensions work, as well as how to make them efficient was difficult, as none of us had developed one before. The check-in implementation was also difficult to implement, as we wanted to check-in on the user occasionally without disturbing their workflow, and providing them with meaningful mental health support. Developing the UI/UX to be approachable and friendly, while also capable and straightforward was a challenge as well, but one we believe we overcame.

Accomplishments that we're proud of
Developing the UI/UX to be approachable and friendly, while also capable and straightforward was a challenge as well, but one we believe we overcame with our mascot Gappy. None of our team-members have worked with Chrome Extensions before, with most of our experience with standard web apps. The Pomodoro-style timer was surprisingly complex to develop within the confines of Chrome Extension's capabilities, so developing a working timer was a really big win for us.

Photo/Logo found here. We claim no ownership of the photo: https://www.pinclipart.com/pindetail/hRwxTo_clip-free-corgi-clipart-cute-chibi-chibi-chicken/                    

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

ชื่อ Check-In Chicken Check-In Chicken
ID igpoimkggagpelmpjlojcnjddehkoamp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/check-in-chicken/igpoimkggagpelmpjlojcnjddehkoamp
คำอธิบาย This extension will help users study, as well as help keep their mental health positive
ขนาดไฟล์ 608 KB
จำนวนการติดตั้ง 2,000
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2022-01-22
วันที่เผยแพร่ 2022-01-17
คะแนน 4.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา spencerfulgham
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Check-In Chicken",
    "description": "This extension will help users study, as well as help keep their mental health positive",
    "version": "2.0",
    "browser_action": {
        "default_icon": ".\/img\/chicken-logo.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            ".\/js\/background_script.js"
        ]
    },
    "permissions": [
        "notifications"
    ]
}