Tiny Timer

The Cutest Study Timer in the West

Qu'est-ce que Tiny Timer ?

Tiny Timer est une extension Chrome développée par codiacsco, et sa fonction principale est "The Cutest Study Timer in the West".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Tiny Timer

Téléchargez les fichiers d'extension Tiny Timer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Tiny Timer Tiny Timer
ID epajlbjodcppohbbdggajfemjagfopnm
URL Officiel https://chromewebstore.google.com/detail/tiny-timer/epajlbjodcppohbbdggajfemjagfopnm
Description The Cutest Study Timer in the West
Taille du Fichier 2.28 MB
Nombre d'Installations 56
Version Actuelle 0.5
Dernière Mise à Jour 2023-05-23
Date de Publication 2023-04-06
Évaluation 4.17/5 Total 6 Évaluations
Développeur codiacsco
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.tinytimer.ca/
Langues Prises en Charge 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
}