ブラウザ版 ○ahoo メールの広告を非表示にする方法

導入するアドオン

・ublock origin
・stylus

stylusはWEBページの表示を独自にカスタマイズできるアドオンです。広告の表示領域を制御するために使用します。詳しくはこちらの紹介ページを参照してください。

stylusで○ahoo mailページを対象にして記述するスタイルシート

/* ==UserStyle==
@name           mail.yahoo.co.jp/u/pc/f/ - 2024年5月2
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    A new userstyle
@author         Me
==/UserStyle== */

@-moz-document url-prefix("https://mail.yahoo.co.jp") {
    .mainColumn > *:nth-child(2){
    display:none;
    }
    .mainColumn > *:nth-child(3){
    display:none;
    }
}

.mainColumn > :first-child > :first-child {
    display: none;
}

コメント

タイトルとURLをコピーしました