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 擴展基本資訊
| 名稱 | |
| ID | hkjfacaiaebelbflcbfgbaiejnakildd |
| 官方網址 | 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
}
} | |