>>201
広告ブロックではないけどユーザースクリプトでも可能だよ
// ==UserScript==
// @name GShock
// @namespace http://tampermonkey.net/
// @version 0.1
// @description GShockのページの邪魔なものを消す
// @match https://gshockjp.blog.jp/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
// ==/UserScript==

var $ = window.jQuery;

$(function() {
$("#ld-floating-share").hide();
$("#ld-floating-navi").hide();
})