Time Check

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

Time Check là gì?

Time Check là một tiện ích mở rộng Chrome được phát triển bởi Rex Biberston, và tính năng chính của nó là "This extension allows you to set alarms based on time of day, countdown, or events in Google Calendar.".

Ả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 Time Check

Tải xuống các tệp mở rộng Time Check 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

                        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.                    

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

Tên Time Check Time Check
ID molceidjmeadnmokjiganicmlkimpjie
URL Chính Thức https://chromewebstore.google.com/detail/time-check/molceidjmeadnmokjiganicmlkimpjie
Mô tả This extension allows you to set alarms based on time of day, countdown, or events in Google Calendar.
Kích Thước Tệp 2.63 MB
Số Lần Cài Đặt 32
Phiên Bản Hiện Tại 2.0.3
Cập Nhật Lần Cuối 2021-06-06
Ngày Phát Hành 2021-05-25
Nhà Phát Triển Rex Biberston
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://timecheck.app
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}