Stayed focused

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

Was ist Stayed focused?

Stayed focused ist eine Chrome-Erweiterung, die von marnie8642 entwickelt wurde, und ihr Hauptmerkmal ist "Stay focused by setting website lock out timers to prevent distractions.".

Erweiterungsscreenshots

screenshot
screenshot

Stayed focused-Erweiterungs-CRX-Datei herunterladen

Laden Sie Stayed focused-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Temporarily lock websites to prevent distractions.                    

Grundlegende Informationen zur Erweiterung

Name Stayed focused Stayed focused
ID lieoebpmdehgcfaaobcckmhanfpeccle
Offizielle URL https://chromewebstore.google.com/detail/stayed-focused/lieoebpmdehgcfaaobcckmhanfpeccle
Beschreibung Stay focused by setting website lock out timers to prevent distractions.
Dateigröße 243 KB
Installationsanzahl 34
Aktuelle Version 1.0.3
Letztes Update 2021-11-29
Veröffentlichungsdatum 2021-11-23
Entwickler marnie8642
E-Mail [email protected]
Zahlungsart in_app
Unterstützte Sprachen 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"
    }
}