アメブロの広告をぜんぶ消す新『CSS編集用デザイン』 | GoogleⅩ-JAPAN如月セナ

GoogleⅩ-JAPAN如月セナ

操作された嘘の情報を信じるのはバカの勝手。真実を書くのはあたしの自由。

まずはCSS編です。
div#advertising2 {
display: none !important;
}

div.advertising2 {
display: none !important;
}

div#advertising3 {
display: none !important;
}

div.ad_frame {
display: none !important;
}

これでGoogleのテキスト広告とサイドバーの一番下のアメブロテキスト広告が消えます。

ヘッダー上の巨大バー広告とサイドメニューのウザイ画像広告はフリースペースに
<style>.headerBnrArea {padding:0 !important;display:none !important;}.subAdBannerArea{display:none !important;}.registArea{display:none !important;}li#barAd {visibility: hidden !important;}</style>

これを一気にコピペ。

お次はJavaScript編。こいつはフリープラグイン
<script src='http://stat100.ameba.jp/blog/js/apm001.js'></script>
<script type="text/javascript">
$(function(){
$(".headerBnrArea").remove();
$(".subAdBannerArea").remove();
$("#advertising2").remove();
$(".advertising2").remove();
$("#advertising3").remove();
$(".ad_frame").remove();
});
</script>