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"; } });