Tiny Timer

The Cutest Study Timer in the West

O que é Tiny Timer?

Tiny Timer é uma extensão do Chrome desenvolvida por codiacsco, e sua principal característica é "The Cutest Study Timer in the West".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Tiny Timer

Baixe arquivos de extensão Tiny Timer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Tiny Timer Tiny Timer
ID epajlbjodcppohbbdggajfemjagfopnm
URL Oficial https://chromewebstore.google.com/detail/tiny-timer/epajlbjodcppohbbdggajfemjagfopnm
Descrição The Cutest Study Timer in the West
Tamanho do Arquivo 2.28 MB
Contagem de Instalações 56
Versão Atual 0.5
Última Atualização 2023-05-23
Data de Publicação 2023-04-06
Classificação 4.17/5 Total de 6 Avaliações
Desenvolvedor codiacsco
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.tinytimer.ca/
Idiomas Suportados 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
}