set alarm

This extension shows a notification at a set time

set alarm là gì?

set alarm là một tiện ích mở rộng Chrome được phát triển bởi 77120, và tính năng chính của nó là "This extension shows a notification at a set time".

Tải xuống tệp CRX của tiện ích mở rộng set alarm

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

                        set the time for a notification. You can also be notified with a sound aswell                    

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

Tên set alarm set alarm
ID hkjfacaiaebelbflcbfgbaiejnakildd
URL Chính Thức https://chrome.google.com/webstore/detail/hkjfacaiaebelbflcbfgbaiejnakildd
Mô tả This extension shows a notification at a set time
Kích Thước Tệp 23.05 KB
Số Lần Cài Đặt 120
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2017-03-04
Ngày Phát Hành 2017-03-04
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển 77120
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "set alarm",
    "icons": {
        "128": "bell-128.png"
    },
    "description": "This extension shows a notification at a set time",
    "author": "Jyro Snoeijen",
    "homepage_url": "http:\/\/www.datastone.nl",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "bell-128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "alarms",
        "notifications",
        "storage",
        "background"
    ],
    "background": {
        "scripts": [
            "timer.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}