set alarm

This extension shows a notification at a set time

什么是set alarm?

set alarm是由77120开发的Chrome扩展程序,该扩展的主要功能是“This extension shows a notification at a set time”。

下载set alarm扩展crx文件

下载set alarm扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 set alarm set alarm
ID hkjfacaiaebelbflcbfgbaiejnakildd
官方URL https://chrome.google.com/webstore/detail/hkjfacaiaebelbflcbfgbaiejnakildd
简介 This extension shows a notification at a set time
文件大小 23.05 KB
安装次数 120
当前版本 1.0.1
更新时间 2017-03-04
上架时间 2017-03-04
评分 5.00/5 共1次评分
开发者 77120
付费类型 free
支持的语言 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
    }
}