Enhanced Outlook Web App
Improves the default behaviour of the Outlook Web App.
Enhanced Outlook Web Appคืออะไร?
Enhanced Outlook Web App เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tobias Günther และคุณลักษณะหลักของมันคือ "Improves the default behaviour of the Outlook Web App."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Enhanced Outlook Web App
ดาวน์โหลดไฟล์ส่วนขยาย Enhanced Outlook Web App ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension improves the free version of the Outlook Web App where ads are being blocked and spam-mails are automatically moved to the spam-folder. Filtration of mails is based on senders and subjects which you define yourself. Ads which currently are blocked include "ad-mails" and "Upgrade to Microsoft 365 Premium". If you should encounter any issues, problems or bugs please report them to: [email protected]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Enhanced Outlook Web App |
ID | ejolmkmnegbamafoknjamlggejcikonk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/enhanced-outlook-web-app/ejolmkmnegbamafoknjamlggejcikonk |
คำอธิบาย | Improves the default behaviour of the Outlook Web App. |
ขนาดไฟล์ | 68.16 KB |
จำนวนการติดตั้ง | 137 |
เวอร์ชันปัจจุบัน | 1.6.6 |
อัปเดตครั้งล่าสุด | 2024-02-09 |
วันที่เผยแพร่ | 2023-09-09 |
ผู้พัฒนา | Tobias Günther |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Enhanced Outlook Web App", "description": "Improves the default behaviour of the Outlook Web App.", "version": "1.6.6", "action": { "default_icon": { "32": "assets\/icon.png" }, "default_title": "Enhanced Outlook Web App", "default_popup": "html\/main.html" }, "icons": { "128": "assets\/icon.png" }, "background": { "service_worker": "js\/serviceWorker.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/outlook.live.com\/mail\/*" ], "js": [ "js\/utensils.js", "js\/dbManagement.js", "js\/errorManagement.js", "js\/extendContextMenu.js", "js\/removeAds.js", "js\/removeJunk.js", "js\/deleteJunk.js", "js\/mainCS.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/*.png", "js\/*.js" ], "matches": [ "https:\/\/*\/*" ] } ] } |