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文件

下載Time Check擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}