Alarm U
This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…
ما هو Alarm U؟
Alarm U هو إضافة Chrome تم تطويرها بواسطة matt.alpe.dev، والميزة الرئيسية لها هي "This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Alarm U
قم بتنزيل ملفات الامتداد Alarm U بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to set alarms in chrome.
On alarm triggered shows a notification and open an alert, if has configured a URL will open a new tab with the provided link. معلومات أساسية عن التمديد
| الاسم | |
| ID | pfilhgkgnhmgoifldaakiddnmhabamjd |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/alarm-u/pfilhgkgnhmgoifldaakiddnmhabamjd |
| الوصف | This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a… |
| حجم الملف | 136 KB |
| عدد التثبيتات | 43 |
| النسخة الحالية | 1.0.0 |
| آخر تحديث | 2023-03-29 |
| تاريخ النشر | 2023-03-22 |
| تقييم | 5.00/5 مجموع تقييمات 4 |
| المطور | matt.alpe.dev |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/matheus-alpe/alarm-u-extension |
| عنوان صفحة المساعدة | https://github.com/matheus-alpe/alarm-u-extension/issues |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Alarm U",
"version": "1.0.0",
"host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"background": {
"service_worker": "service-worker.js"
},
"permissions": [
"tabs",
"scripting",
"storage",
"notifications",
"alarms"
],
"web_accessible_resources": [
{
"resources": [
"*.html",
"*.svg",
"*.js",
"*.css",
"*.svg"
],
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
]
}
],
"externally_connectable": {
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
]
},
"action": [],
"icons": {
"16": "favicon-16x16.png",
"32": "favicon-32x32.png",
"48": "favicon-48x48.png",
"128": "favicon-128x128.png"
}
} | |