tempermonkeyでスクリプトを作成すればできます。androidのfirefoxで動作を確認していますが、IOSでは可能かはわかりません。
こういう簡易的なプログラムはAIで簡単に作れます
ーーーーーーーーー
// ==UserScript==
// @name なろう感想欄・リアクション非表示2
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 小説家になろうの感想欄とリアクションを非表示にする
// @author Your Name
// @match
https://ncode.syosetu.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// CSSを追加
const style = document.createElement('style');
style.textContent = `
.p-new-impression__box,
.p-reaction__body,
.p-reaction__toggle,
.p-reaction__menu {
display: none !important;
}
`;
document.head.appendChild(style);
})();