Stayed focused

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

Stayed focused là gì?

Stayed focused là một tiện ích mở rộng Chrome được phát triển bởi marnie8642, và tính năng chính của nó là "Stay focused by setting website lock out timers to prevent distractions.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Stayed focused

Tải xuống các tệp mở rộng Stayed focused dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Temporarily lock websites to prevent distractions.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Stayed focused Stayed focused
ID lieoebpmdehgcfaaobcckmhanfpeccle
URL Chính Thức https://chromewebstore.google.com/detail/stayed-focused/lieoebpmdehgcfaaobcckmhanfpeccle
Mô tả Stay focused by setting website lock out timers to prevent distractions.
Kích Thước Tệp 243 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2021-11-29
Ngày Phát Hành 2021-11-23
Nhà Phát Triển marnie8642
Email [email protected]
Loại Thanh Toán in_app
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}