Stayed focused

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

ما هو Stayed focused؟

Stayed focused هو إضافة Chrome تم تطويرها بواسطة marnie8642، والميزة الرئيسية لها هي "Stay focused by setting website lock out timers to prevent distractions.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Stayed focused

قم بتنزيل ملفات الامتداد Stayed focused بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}