set alarm

This extension shows a notification at a set time

Wat is set alarm?

set alarm is een Chrome-extensie ontwikkeld door 77120, en de belangrijkste functie is "This extension shows a notification at a set time".

Download het CRX-bestand van de extensie set alarm

Download set alarm-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam set alarm set alarm
ID hkjfacaiaebelbflcbfgbaiejnakildd
Officiële URL https://chrome.google.com/webstore/detail/hkjfacaiaebelbflcbfgbaiejnakildd
Beschrijving This extension shows a notification at a set time
Bestandsgrootte 23.05 KB
Aantal Installaties 120
Huidige Versie 1.0.1
Laatst Bijgewerkt 2017-03-04
Publicatiedatum 2017-03-04
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar 77120
Betalingswijze free
Ondersteunde Talen 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
    }
}