Stayed focused

Stay focused by setting website lock out timers to prevent distractions.

Cos'è Stayed focused?

Stayed focused è un'estensione di Chrome sviluppata da marnie8642, e la sua funzione principale è "Stay focused by setting website lock out timers to prevent distractions.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Stayed focused

Scarica i file di estensione Stayed focused 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

                        Temporarily lock websites to prevent distractions.                    

Informazioni di Base sull'Estensione

Nome Stayed focused Stayed focused
ID lieoebpmdehgcfaaobcckmhanfpeccle
URL Ufficiale https://chromewebstore.google.com/detail/stayed-focused/lieoebpmdehgcfaaobcckmhanfpeccle
Descrizione Stay focused by setting website lock out timers to prevent distractions.
Dimensione del File 243 KB
Conteggio Installazioni 34
Versione Corrente 1.0.3
Ultimo Aggiornamento 2021-11-29
Data di Pubblicazione 2021-11-23
Sviluppatore marnie8642
Email [email protected]
Tipo di Pagamento in_app
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stayed focused",
    "description": "Stay focused by setting website lock out timers to prevent distractions.",
    "version": "1.0.3",
    "manifest_version": 3,
    "action": {
        "default_popup": "views\/popup.html",
        "default_icon": {
            "16": "images\/lock.png",
            "32": "images\/lock.png",
            "48": "images\/lock.png",
            "128": "images\/lock.png"
        }
    },
    "icons": {
        "16": "images\/lock.png",
        "32": "images\/lock.png",
        "48": "images\/lock.png",
        "128": "images\/lock.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens popup.html"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/content_start.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "run_at": "document_end",
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "build\/background.js",
        "type": "module"
    }
}