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ファイルをダウンロード

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
Eメール [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
}