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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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\/*"
]
} | |