Stayed focused

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

Wat is Stayed focused?

Stayed focused is een Chrome-extensie ontwikkeld door marnie8642, en de belangrijkste functie is "Stay focused by setting website lock out timers to prevent distractions.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Stayed focused

Download Stayed focused-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Temporarily lock websites to prevent distractions.                    

Basisinformatie over de Extensie

Naam Stayed focused Stayed focused
ID lieoebpmdehgcfaaobcckmhanfpeccle
Officiële URL https://chromewebstore.google.com/detail/stayed-focused/lieoebpmdehgcfaaobcckmhanfpeccle
Beschrijving Stay focused by setting website lock out timers to prevent distractions.
Bestandsgrootte 243 KB
Aantal Installaties 34
Huidige Versie 1.0.3
Laatst Bijgewerkt 2021-11-29
Publicatiedatum 2021-11-23
Ontwikkelaar marnie8642
E-mail [email protected]
Betalingswijze in_app
Ondersteunde Talen 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"
    }
}