Stayed focused

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

Stayed focused क्या है?

Stayed focused marnie8642 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stay focused by setting website lock out timers to prevent distractions."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Stayed focused एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Temporarily lock websites to prevent distractions.                    

एक्सटेंशन की मूल जानकारी

नाम Stayed focused Stayed focused
ID lieoebpmdehgcfaaobcckmhanfpeccle
आधिकारिक URL https://chromewebstore.google.com/detail/stayed-focused/lieoebpmdehgcfaaobcckmhanfpeccle
विवरण Stay focused by setting website lock out timers to prevent distractions.
फ़ाइल का आकार 243 KB
स्थापना संख्या 34
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2021-11-29
प्रकाशन तिथि 2021-11-23
डेवलपर marnie8642
ईमेल [email protected]
भुगतान के प्रकार in_app
समर्थित भाषाएँ 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"
    }
}