Time Check

This extension allows you to set alarms based on time of day, countdown, or events in Google Calendar.

Time Check란 무엇입니까?

Time Check은(는) Rex Biberston에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to set alarms based on time of day, countdown, or events in Google Calendar."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Time Check 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Easily set alarms in Google Chrome based on countdown or time of day so you always show up on time. Choose from two alarm modes, two visual alerts, and five sounds. 

Now you can even set an alarm with a single click inside of Google Calendar!

Time Check is free, easy to use, and makes a real difference in your ability to start and end every call and meeting on time.                    

확장 프로그램 기본 정보

이름 Time Check Time Check
ID molceidjmeadnmokjiganicmlkimpjie
공식 URL https://chromewebstore.google.com/detail/time-check/molceidjmeadnmokjiganicmlkimpjie
설명 This extension allows you to set alarms based on time of day, countdown, or events in Google Calendar.
파일 크기 2.63 MB
설치 횟수 32
현재 버전 2.0.3
최근 업데이트 2021-06-06
출시 날짜 2021-05-25
개발자 Rex Biberston
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://timecheck.app
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.0.3",
    "name": "Time Check",
    "description": "This extension allows you to set alarms based on time of day, countdown, or events in Google Calendar.",
    "permissions": [
        "storage",
        "alarms",
        "notifications",
        "",
        "*:\/\/*\/*",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": "resources\/img\/16.png",
        "32": "resources\/img\/32.png",
        "48": "resources\/img\/48.png",
        "64": "resources\/img\/64.png"
    },
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "resources\/img\/16.png",
            "32": "resources\/img\/32.png",
            "48": "resources\/img\/48.png"
        }
    },
    "web_accessible_resources": [
        "resources\/audio\/alarm_beeps.mp3",
        "resources\/audio\/alarm_clock_galaxy_2.mp3",
        "resources\/audio\/alarm_for_iphone_5.mp3",
        "resources\/audio\/alarm_clock_samsung.mp3",
        "resources\/audio\/alarm_tone_iphone.mp3",
        "resources\/img\/a1.gif",
        "resources\/img\/a2.gif",
        "html\/temp.html",
        "html\/temp2.html",
        "resources\/img\/32.png"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "\/js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/calendar.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/content.js"
            ]
        }
    ]
}