Outlook Reloader
This extension will reload the web outlook (https://outlook.office.com/owa/) periodically.
ما هو Outlook Reloader؟
Outlook Reloader هو إضافة Chrome تم تطويرها بواسطة tidnlyam، والميزة الرئيسية لها هي "This extension will reload the web outlook (https://outlook.office.com/owa/) periodically.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Outlook Reloader
قم بتنزيل ملفات الامتداد Outlook Reloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension will reload the web outlook (https://outlook.office.com/owa/) periodically. معلومات أساسية عن التمديد
| الاسم | |
| ID | hcmghgkpcoagochnpegomdhmfknmfcjc |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/outlook-reloader/hcmghgkpcoagochnpegomdhmfknmfcjc |
| الوصف | This extension will reload the web outlook (https://outlook.office.com/owa/) periodically. |
| حجم الملف | 4.87 KB |
| عدد التثبيتات | 205 |
| النسخة الحالية | 1.0.2 |
| آخر تحديث | 2019-05-14 |
| تاريخ النشر | 2019-05-13 |
| المطور | tidnlyam |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/tily/outlook_reloader |
| اللغات المدعومة | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Outlook Reloader",
"description": "This extension will reload the web outlook (https:\/\/outlook.office.com\/owa\/) periodically.",
"version": "1.0.2",
"content_scripts": [
{
"matches": [
"https:\/\/outlook.office.com\/mail\/*",
"https:\/\/outlook.office365.com\/calendar\/*"
],
"js": [
"main.js"
]
}
],
"browser_action": {
"default_title": "Outlook Reloader",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"https:\/\/outlook.office.com\/mail\/*",
"https:\/\/outlook.office365.com\/calendar\/*"
]
} | |