Simple Focus Mode

A Chrome extension to improve productivity and reduce distractions.

Cos'è Simple Focus Mode?

Simple Focus Mode è un'estensione di Chrome sviluppata da Jaroslav Pantsjoha, e la sua funzione principale è "A Chrome extension to improve productivity and reduce distractions.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Simple Focus Mode

Scarica i file di estensione Simple Focus Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This is a Simple Focus Timer Extension for Google Chrome. It helps users improve productivity by breaking their workshops, meetings and any other work into focused intervals. The extension allows users to start a timed session, from 1 minute to 120 minutes, with an audible alert on timer completing.                    

Informazioni di Base sull'Estensione

Nome Simple Focus Mode Simple Focus Mode
ID dphglijjcbinhoohieelpbafdgedbgjl
URL Ufficiale https://chromewebstore.google.com/detail/simple-focus-mode/dphglijjcbinhoohieelpbafdgedbgjl
Descrizione A Chrome extension to improve productivity and reduce distractions.
Dimensione del File 179 KB
Conteggio Installazioni 37
Versione Corrente 0.2
Ultimo Aggiornamento 2024-01-04
Data di Pubblicazione 2023-04-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Jaroslav Pantsjoha
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://jaroslav-pantsjoha.medium.com/simple-focus-mode-boost-your-productivity-with-my-chrome-extension-3f5cf0f7b843
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple Focus Mode",
    "version": "0.2",
    "description": "A Chrome extension to improve productivity and reduce distractions.",
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "notifications",
        "declarativeNetRequestFeedback"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": ".\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                ".\/js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "clock_alarm.mp3"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rules",
                "path": "rules.json",
                "enabled": true
            }
        ]
    }
}