Break To Go

Simple time management web extension

Qu'est-ce que Break To Go ?

Break To Go est une extension Chrome développée par staterz, et sa fonction principale est "Simple time management web extension".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Break To Go

Téléchargez les fichiers d'extension Break To Go 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

                        BreakToGo is a simple browser extension to keep track of your work time and time for breaks. You can flexibly adjust the number of breaks, as well as their duration. You can also specify long breaks and the frequency of their appearance.

In the settings you can:
- Turn on or off the appearance of notifications about the start of a session of work or a break
- Configure an optional list of sites to block during work sessions
- Сhoose a time to start the timer automatically on workdays

I would appreciate your feedback and suggestions.

App development - Stas Bozhevskyi
App design      - Vlad Karpov                    

Informations de Base sur l'Extension

Nom Break To Go Break To Go
ID nlflodogepdjjmgljoigbkepgiikkmee
URL Officiel https://chromewebstore.google.com/detail/break-to-go/nlflodogepdjjmgljoigbkepgiikkmee
Description Simple time management web extension
Taille du Fichier 172 KB
Nombre d'Installations 72
Version Actuelle 1.2.2
Dernière Mise à Jour 2021-04-07
Date de Publication 2019-12-27
Évaluation 4.50/5 Total 2 Évaluations
Développeur staterz
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Break To Go",
    "version": "1.2.2",
    "description": "Simple time management web extension",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-inactive-16.png",
            "32": "icons\/icon-inactive-32.png",
            "48": "icons\/icon-inactive-48.png",
            "128": "icons\/icon-inactive-128.png"
        },
        "default_title": "Have a good day with my time managment app",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon-work-16.png",
        "32": "icons\/icon-work-32.png",
        "48": "icons\/icon-work-48.png",
        "128": "icons\/icon-work-128.png"
    },
    "background": {
        "scripts": [
            "libs\/jquery.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "notifications",
        "storage",
        "activeTab",
        "tabs",
        "alarms"
    ],
    "options_page": "options-page\/options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "libs\/jquery.min.js",
                "content.js"
            ]
        }
    ]
}