Tiny Timer

The Cutest Study Timer in the West

Tiny Timerคืออะไร?

Tiny Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย codiacsco และคุณลักษณะหลักของมันคือ "The Cutest Study Timer in the West"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tiny Timer

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

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

                        Tiny timer is a chrome extension that helps you stay focused while you get work done on your browser using the Pomodoro Technique. 

Meet your new study buddy! This little guy will help you stay focused by only waking up when your Pomodoro timer goes off. Then, you can take a break together while your buddy keeps track of when you need to go back to work.

What is the Pomodoro study technique?
The Pomodoro Technique is a time management method that involves breaking down work into 25-minute intervals, called Pomodoros, followed by short breaks. It aims to improve focus, productivity, and efficiency by helping individuals avoid distractions and maintain energy.

As of now, the currently available study buddies include:
-Barry the Cat (Free)

Follow my twitter for updates and other news:
https://twitter.com/Codiacs

***Note that this chrome extension does NOT work on the "new tab" page as well as any "chrome web store" pages***

Features:
-Modifiable length of Pomodoro work period and break length.
-Optional time in Milliseconds (For those who work better under stress).
-Multiple different study buddies to choose from (Coming soon!).
-Buddy visibility settings 
-Timer Visibility Settings
-Buddy Size Scaling
-Alarm sound with Volume Settings



Latest Changelog (Prerelease v0.5: Mega Update) 
New Features:
-Implemented sound system for phase transition noises (It's an alarm sound), tentatively a meow noise
--Implemented volume slider
-Resizing via drag and drop with a visual indicator
-Timer visibility togglable
-Buddy size state and volume values retains between sessions

Bug Fixes:
-Fixed bug where barry's parent div was bigger than he was, so he would (unfortuntately) dynamically 
change his size depending on unknown site-specific factors
-Fixed bug where the first work phase used the max Sprite value from the pre-phase spritesheet
-Various resizing related bugs
-Various sync bugs


Previous Changelog (Prerelease v0.3)
-Displaying milliseconds on timer can now be toggled on and off (maintains state between browsing sessions)
-Launched companion website (www.tinytimer.ca)
-New speech bubble
-New font for speech bubble
-Bug fixes for millisecond display and visibility settings                    

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

ชื่อ Tiny Timer Tiny Timer
ID epajlbjodcppohbbdggajfemjagfopnm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tiny-timer/epajlbjodcppohbbdggajfemjagfopnm
คำอธิบาย The Cutest Study Timer in the West
ขนาดไฟล์ 2.28 MB
จำนวนการติดตั้ง 56
เวอร์ชันปัจจุบัน 0.5
อัปเดตครั้งล่าสุด 2023-05-23
วันที่เผยแพร่ 2023-04-06
คะแนน 4.17/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา codiacsco
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.tinytimer.ca/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tiny Timer",
    "version": "0.5",
    "description": "The Cutest Study Timer in the West",
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "audio"
    ],
    "host_permissions": [
        ""
    ],
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self",
        "style-src": [
            "self",
            "buddy.css"
        ]
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                ".\/buddy.css"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icons\/icon16.png",
            "24": "assets\/icons\/icon16.png",
            "32": "assets\/icons\/icon16.png"
        },
        "default_title": "Tiny Timer",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*",
                "buddy.css",
                "assets\/fonts\/*",
                "assets\/sounds\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "manifest_version": 3
}