Tiny Timer

The Cutest Study Timer in the West

Tiny Timer란 무엇입니까?

Tiny Timer은(는) codiacsco에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The Cutest Study Timer in the West"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Tiny Timer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}