set alarm
This extension shows a notification at a set time
Vad är set alarm?
set alarm är en Chrome-tillägg utvecklad av 77120, och dess huvudfunktion är "This extension shows a notification at a set time".
Ladda ner set alarm-förlängningens CRX-fil
Ladda ner set alarm-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
set the time for a notification. You can also be notified with a sound aswell Grundläggande Information om Tillägg
| Namn | |
| ID | hkjfacaiaebelbflcbfgbaiejnakildd |
| Officiell webbadress | https://chrome.google.com/webstore/detail/hkjfacaiaebelbflcbfgbaiejnakildd |
| Beskrivning | This extension shows a notification at a set time |
| Filstorlek | 23.05 KB |
| Antal Installationer | 120 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2017-03-04 |
| Publiceringsdatum | 2017-03-04 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | 77120 |
| Betalningssätt | free |
| Stödda Språk | 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
}
} | |