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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}