以下の内容はhttps://www.aruse.net/entry/2025/02/01/143541より取得しました。


47Newsで共同通信社のみの記事を表示するブックマークレット

47 News で共同通信社の記事のみを表示するブックマークレットを作ってみました。

javascript:(function(){
  if (!document.location.toString().includes('www.47news.jp')) {
    return;
  }

  var target = "共同通信";
  var items = document.querySelectorAll(".post_item");
  items.forEach(function(item){
    if (item.textContent.indexOf(target) === -1) {
      item.style.display = "none";
    }
  });
})();

Firefox で動作確認をしています。

コードは自由に改変してご利用ください。

Greasemonkey を使うとブックマークレットのクリックが不要になるのでなお便利。

// ==UserScript==
// @name     47News Fillter
// @version  1
// @grant    none
// ==/UserScript==
if (!document.location.toString().includes('www.47news.jp')) {
  return;
}

var target = "共同通信";
var items = document.querySelectorAll(".post_item");
items.forEach(function(item){
  if (item.textContent.indexOf(target) === -1) {
    item.style.display = "none";
  }
});



以上の内容はhttps://www.aruse.net/entry/2025/02/01/143541より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14