Stayed focused

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

Stayed focused란 무엇입니까?

Stayed focused은(는) marnie8642에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stay focused by setting website lock out timers to prevent distractions."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Stayed focused 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}