Decluttered Outlook

Removes all advertisement banners, favorites, groups und the header of folders.

目前為 2021-11-01 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

/* ==UserStyle==
@name           Decluttered Outlook
@version        1.0.3
@description    Removes all advertisement banners, favorites, groups und the header of folders.
@author         floriegl
@namespace https://greasyfork.org/users/703184
==/UserStyle== */

@-moz-document url-prefix("https://outlook.live.com/mail/") {
/* Right-side ad banner */
div#app > div > div:nth-child(3) > div > div > div > div > div:last-child {
    display: none !important;
}
    
div#app > div > div:nth-child(3) > div > div:nth-child(2) {
    display: none !important;
}

/* Bottom ad banner */
div#app > div > div:nth-child(3) > div > div > div > div:nth-child(2) {
    display: none !important;
}

/* "Upgrade" banner */
div#app > div > div:nth-child(3) > div > div > div > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) {
    display: none !important;
}
    
div[role="region"]  > div > div > div[role="menubar"] {
    display: none !important;
}
    
div#app > div > div:nth-child(3) > div > div > div > div > div > div:nth-child(2) > div > div > div > div:nth-child(2) {
    display: none !important;
}
    
div#app > div > div:nth-child(3) > div > div > div > div > div > div:nth-child(2) > div > div > div > div:nth-child(3) > div:nth-child(1) {
    display: none !important;
}
    
div#app > div > div:nth-child(3) > div > div > div > div > div > div:nth-child(2) > div > div > div > div:nth-child(5) {
    display: none !important;
}
}