2023-02-15

リスト登録したユーザーはてブコメントを薄く表示するgreasemonkey

非表示機能で完全に無視したいって程でもないんだよな〜っていう。

タイプ別色分け機能とかこういうののはてなスター版とかも欲しい。面倒だから誰か書いて。

// ==UserScript==
// @name     hatebu_comment_usuku_hyouji
// @version  1
// @grant    none
// @include     https://b.hatena.ne.jp/entry/*
// ==/UserScript==

const userIdList = [
  'hoge',
  'piyo',
  ...
];

setInterval(() => {
  document.querySelectorAll('.entry-comment-contents').forEach((element, i) => {
    if (userIdList.includes(element.dataset.userName)) {
      element.style.opacity = '0.3';
    }
  });
}, 3000);

記事への反応(ブックマークコメント)

ログイン ユーザー登録
ようこそ ゲスト さん