Stayed focused

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

What is Stayed focused?

Stayed focused is a Chrome extension developed by marnie8642, and its main feature is "Stay focused by setting website lock out timers to prevent distractions.".

Extension Screenshots

screenshot
screenshot

Download Stayed focused Extension CRX File

Download Stayed focused extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Temporarily lock websites to prevent distractions.                    

Extension Basic Information

Name Stayed focused Stayed focused
ID lieoebpmdehgcfaaobcckmhanfpeccle
Official URL https://chromewebstore.google.com/detail/stayed-focused/lieoebpmdehgcfaaobcckmhanfpeccle
Description Stay focused by setting website lock out timers to prevent distractions.
File Size 243 KB
Installation Count 34
Current Version 1.0.3
Last Updated 2021-11-29
Publish Date 2021-11-23
Developer marnie8642
Email [email protected]
Payment Type in_app
Supported Languages 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"
    }
}