853 エッヂの名無し 2025/10/05(日) 13:39:16.119 ID:FOv3ZuqdT
// ==UserScript==
// @name なろう感想欄・リアクション非表示
// @namespace https://bbs.eddibb.cc/liveedge/
// @version 1.0
// @description 小説家になろう及び姉妹サイトにて、小説下部の感想欄・リアクションを非表示にする
// @author AbeShinzou
// @match https://*.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);
})();