Simple Screen Break

Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.

Simple Screen Break란 무엇입니까?

Simple Screen Break은(는) Solid Code Solutions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear."입니다.

확장 프로그램 스크린샷

screenshot

Simple Screen Break 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Displays a simple alert reminding you to take a screen break.

You can choose how often the notification appears from one of the following options: every 5, 10, 15, 20, 25, 30, 45 or 60 minutes.

Simple Screen Break is simple (as it's name suggests!) and easy-to-use.                    

확장 프로그램 기본 정보

이름 Simple Screen Break Simple Screen Break
ID jckfggaihbloddfjgaodhfjhjegpnalo
공식 URL https://chromewebstore.google.com/detail/simple-screen-break/jckfggaihbloddfjgaodhfjhjegpnalo
설명 Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.
파일 크기 56.4 KB
설치 횟수 35
현재 버전 0.0.2
최근 업데이트 2023-02-23
출시 날짜 2023-01-18
평점 5.00/5 총 3 개의 평점
개발자 Solid Code Solutions
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.solidcode.solutions/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple Screen Break",
    "version": "0.0.2",
    "description": "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.",
    "icons": {
        "16": "\/img\/logo_16.png",
        "32": "\/img\/logo_32.png",
        "48": "\/img\/logo_48.png",
        "128": "\/img\/logo_128.png"
    },
    "action": {
        "default_title": "Simple Screen Break Popup",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "content\/main.js"
            ],
            "css": [
                "content\/main.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "alarms",
        "storage"
    ]
}