set alarm

This extension shows a notification at a set time

What is set alarm?

set alarm is a Chrome extension developed by 77120, and its main feature is "This extension shows a notification at a set time".

Download set alarm Extension CRX File

Download set alarm extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name set alarm set alarm
ID hkjfacaiaebelbflcbfgbaiejnakildd
Official URL https://chrome.google.com/webstore/detail/hkjfacaiaebelbflcbfgbaiejnakildd
Description This extension shows a notification at a set time
File Size 23.05 KB
Installation Count 120
Current Version 1.0.1
Last Updated 2017-03-04
Publish Date 2017-03-04
Rating 5.00/5 Total 1 Ratings
Developer 77120
Payment Type free
Supported Languages 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
    }
}