Enhanced Outlook Web App
Improves the default behaviour of the Outlook Web App.
Enhanced Outlook Web App란 무엇입니까?
Enhanced Outlook Web App은(는) Tobias Günther에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improves the default behaviour of the Outlook Web App."입니다.
확장 프로그램 스크린샷
Enhanced Outlook Web App 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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:\/\/*\/*" ] } ] } |