Alarm Clock

This is a simple chrome extension and ability to set upto 3 alarm times.

什么是Alarm Clock?

Alarm Clock是由http://soubhik.chatterjee.pw开发的Chrome扩展程序,该扩展的主要功能是“This is a simple chrome extension and ability to set upto 3 alarm times.”。

扩展截图

screenshot

下载Alarm Clock扩展crx文件

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

扩展使用说明

                        It's an alarm clock for Google Chrome Browser, with a total of 3 alarms. Very small footprint and its free!

Does not need any tabs to be open.                    

扩展基本信息

名称 Alarm Clock Alarm Clock
ID engpdgphngdeimpimkipknieejalbelk
官方URL https://chrome.google.com/webstore/detail/alarm-clock/engpdgphngdeimpimkipknieejalbelk
简介 This is a simple chrome extension and ability to set upto 3 alarm times.
文件大小 66.27 KB
安装次数 1,000
当前版本 1.3
更新时间 2016-10-25
上架时间 2016-10-25
评分 1.53/5 共45次评分
开发者 http://soubhik.chatterjee.pw
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "bell.png",
        "default_title": "Alarm Clock",
        "name": "Alarm Clock",
        "default_popup": "popup.html"
    },
    "description": "This is a simple chrome extension and ability to set upto 3 alarm times.",
    "icons": {
        "128": "bell.png"
    },
    "web_accessible_resources": [
        "bell.png"
    ],
    "name": "Alarm Clock",
    "permissions": [
        "tabs",
        "storage",
        "notifications",
        "management",
        "unlimitedStorage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2,
    "version": "1.3"
}