【工具】—屏蔽烦你的id和版面文章的脚本

版主: 牛河梁

回复
头像
牛河梁(别问我是谁)楼主
论坛元老
论坛元老
2023年度十大优秀网友
2024年度优秀版主
牛河梁 的博客
帖子互动: 1282
帖子: 24573
注册时间: 2022年 11月 17日 21:21
联系:

#1 【工具】—屏蔽烦你的id和版面文章的脚本

帖子 牛河梁(别问我是谁)楼主 »

修改了一下黄版的屏蔽脚本。能够屏蔽包括id被推荐文章十大文章等。也能屏蔽烦你的版面的文章。

具体而言,要在首页屏蔽哪一个版面的文章只需手动编辑“黑名单”把版面名像id一样加入黑名单即可。

举例说,要屏蔽“加州华人”版,将“加州华人”这个名字(不带双引号)加入“黑名单”。注意,需要全名。如果版名有()注释,则这部分也要加上。

同理,要屏蔽“牛河梁”这个id的所有帖子,包括首页的帖子链接,将“牛河梁”这个名字(不带双引号)加入“黑名单”即可。

如果名字带有空格,将空格替换为#。

插件安装指南请见:viewtopic.php?t=9560

修改的代码如下:

代码: 全选

      // ==UserScript==
      // @name         NewMitbbs-bot-blocker
      // @namespace    http://tampermonkey.net/
      // @version      0.2
      // @description  Manages and blocks bot generated content. Shamelessly modified from chunjuan's script at https://greasyfork.org/en/scripts/29195-mitbbs-bot-blocker/code, which was inspired by Smalltalk80's original GM script, http://userscripts-mirror.org/scripts/review/78633
      // @author       Sagittarius A*,modified by 牛河梁
      // @match        http://newmitbbs.com/*
      // @match        https://newmitbbs.com/*
      // @grant        GM_addStyle
      // @run-at       document-idle
      // ==/UserScript==
      // debugger;
      (function() {
        'use strict';

        var storageKey = 'new.mitbbs.blocklist';

        function getBlocklist() {
          var blockList = localStorage.getItem(storageKey);
          if (blockList === null) {
            setBlocklist([]);
            blockList = localStorage.getItem(storageKey);
          }

          try {
            blockList = JSON.parse(blockList);
          } catch (error) {
            blockList = [];
            setBlocklist(blockList);
          }

          blockList = Array.isArray(blockList) ? blockList : [];
          return blockList;
        }

        function setBlocklist(idNameList) {
          // remove duplicate items
          // todo: babel output for this one doesn't really work, have to revert back to old fashion way
          // idNameList = [...new Set(idNameList)]
          var uniqueidNameList = idNameList.filter(function (elem, index, self) {
            return index === self.indexOf(elem);
          });
          uniqueidNameList = uniqueidNameList.sort(function (a, b) {
            // defer from localeCompare for better browser support
            if (a.toLowerCase() < b.toLowerCase()) return -1;
            if (a.toLowerCase() > b.toLowerCase()) return 1;
            return 0;
          });
          localStorage.setItem(storageKey, JSON.stringify(uniqueidNameList));
          document.getElementById('blockListInput').value = uniqueidNameList;
        }

        function getBlockFlag() {
          var blockFlag = localStorage.getItem(storageKey + '.flag');
          if (blockFlag === null) {
            setBlockFlag(0);
            blockFlag = localStorage.getItem(storageKey + '.flag');
          }
          //  js, just being js
          return parseInt(blockFlag);
        }

        function setBlockFlag(flag) {
          localStorage.setItem(storageKey + '.flag', flag);
        }

        function changeRowVisibility() {
            var blockList = getBlocklist();
            var flag = getBlockFlag();
            var counter = 0;
            if (blockList) {
                document.querySelectorAll('li.row').forEach(r => {
                    r.style.display = '';
                    if (flag) {
                        if (blockList.indexOf(r.querySelector('span.username')?.textContent) > -1 ||
                            blockList.indexOf(r.querySelector('div.responsive-show')?.querySelector('a')?.textContent?.replaceAll(' ','#')) > -1) {
                            r.style.display = 'none';
                            counter += 1;
                        }
                    }
                });
            }
            counter = flag ? counter : 0;
            document.getElementById('blockCounter').innerHTML = counter;
        }

        function changePostVisibility() {
          var blockList = getBlocklist();
          var flag = getBlockFlag();
          var counter = 0;
          // if list is not empty
          if (blockList) {
            // yeah yeah yeah magic number, whatever
            // this will miss the first one though, nice try langfang coder
            document.querySelector('div.forumbg:not(.announcement)')
                    .querySelectorAll('li.row')
                    .forEach(function (td) {
              // damn, now i miss jquery/zepto
              var id = td.querySelector('div.responsive-show').querySelector('span.username').textContent;
              //  reset all reply to visible. This is a hack-ish method to fix content not being displayed after userID has been removed from blocklist.
              //  TODO: maybe in the near future, we should keep a local copy of blocklist so that we can compare the changes and show/hide content intelligently, maybe
              td.style.display = '';
              //  yeah, nested if statements
              if (blockList.indexOf(id) > -1) {
                if (flag) {
                  td.style.display = 'none';
                  counter += 1;
                } else {
                  td.style.display = '';
                }
              }
            });
            counter = flag ? counter : 0;
            document.getElementById('blockCounter').innerHTML = counter;
          }
        }

        function changeReplyVisibility() {
          //  now we on individual post page
          var blockList = getBlocklist();
          var flag = getBlockFlag();
          var counter = 0;
          var sideBarBG = document.querySelectorAll('div.post.has-profile');
          sideBarBG.forEach(function (reply) {
            // var post = reply.parentElement.parentElement.parentElement.parentElement.parentElement;
            var userID = reply.querySelector('span.username').textContent;
            //  another magic number!
            var userMenu = reply.querySelector('strong');
            var hasButton = userMenu.querySelector('span.button') !== null;
            if (!hasButton) {
              var blockButton = document.createElement('span');
              blockButton.setAttribute('class', 'button');
              blockButton.innerHTML = '&nbsp;&nbsp;<button class="addToBlock" title="' + userID + '">屏蔽!</button>';
              userMenu.appendChild(blockButton);
            }
            if(!flag) userMenu.querySelector('span.button').style.display = 'none';
            else userMenu.querySelector('span.button').style.display = '';
            //  reset all reply to visible. This is a hack-ish method to fix content not being displayed after userID has been removed from blocklist.
            //  TODO: maybe in the near future, we should keep a local copy of blocklist so that we can compare the changes and show/hide content intelligently, maybe
            reply.style.display = '';
            if (blockList.indexOf(userID) > -1) {
              if (flag) {
                reply.style.display = 'none';
                counter += 1;
              } else {
                reply.style.display = '';
              }
            }
            counter = flag ? counter : 0;
            document.getElementById('blockCounter').innerHTML = counter;
          });

          var allBlockButton = document.querySelectorAll('.addToBlock');
          Array.from(allBlockButton).forEach(function (button) {
            var userID = button.getAttribute('title');
            button.addEventListener('click', function () {
              var yesBlock = confirm('Block ' + userID + ' ?');
              if (yesBlock) {
                blockList.push(userID);
                setBlocklist(blockList);
                document.getElementById('blockListInput').value = getBlocklist().join();
                // toggleBlockedContent();
                // copy & paste from above code to refresh the page with newly added id
                sideBarBG.forEach(function (reply) {
                  // var post = reply.parentElement.parentElement.parentElement.parentElement.parentElement;
                  var userID = reply.querySelector('span.username').textContent;
                  //  another magic number!
                  var userMenu = reply.querySelector('strong');
                  var hasButton = userMenu.querySelector('span.button') !== null;
                  if (!hasButton) {
                    var blockButton = document.createElement('span');
                    blockButton.setAttribute('class', 'button');
                    blockButton.innerHTML = '&nbsp;&nbsp;<button class="addToBlock" title="' + userID + '">屏蔽!</button>';
                    userMenu.appendChild(blockButton);
                  }
                  if(!flag) userMenu.querySelector('span.button').style.display = 'none';
                  else userMenu.querySelector('span.button').style.display = '';
                  //  reset all reply to visible. This is a hack-ish method to fix content not being displayed after userID has been removed from blocklist.
                  //  TODO: maybe in the near future, we should keep a local copy of blocklist so that we can compare the changes and show/hide content intelligently, maybe
                  reply.style.display = '';
                  if (blockList.indexOf(userID) > -1) {
                    if (flag) {
                      reply.style.display = 'none';
                      counter += 1;
                    } else {
                      reply.style.display = '';
                    }
                  }
                  counter = flag ? counter : 0;
                  document.getElementById('blockCounter').innerHTML = counter;
                });
              }
            });
          });
        }

        function toggleBlockedContent() {
          document.getElementById('isBlocking').checked ? setBlockFlag(1) : setBlockFlag(0);
          changeRowVisibility();
          var pageType = locationGuesser();
          switch (pageType) {
            case 1:
              changeReplyVisibility();
              break;
            case -1:
//              changePostVisibility();
              changeRowVisibility();
              break;
            case 0:
              changeRowVisibility();
              break;
          }
        }

        function locationGuesser() {
          var pageType = void 0;
          var url = window.location.href;
          if (url.indexOf('viewtopic') > -1) {
            pageType = 1;
          } else if (url.indexOf('viewforum') > -1) {
            pageType = -1;
          } else {
            pageType = 0;
          }

          return pageType;
        }

        // callback for when clicking 黑名单 button
        function changeBlockListVisibility() {
          var notVisible = document.getElementById('blockListPop').style.display === 'none';
          if (notVisible) {
            // show block list pop up
            document.getElementById('blockListInput').value = getBlocklist().join();
            document.getElementById('blockListPop').style.display = '';
          } else {
            // close block list pop up
            document.getElementById('blockListPop').style.display = 'none';
            // update blocklist when closing the pop up
            updateBlockList();
          }
        }

        function updateBlockList() {
          var newBlockList = document.getElementById('blockListInput').value;
          //  remove line break, space, trailing comma
          newBlockList = newBlockList.replace(/(\r\n|\n|\r)/gm, '').replace(/\s/g, '').replace(/,+$/, '');
          newBlockList = newBlockList.split(',');
          setBlocklist(newBlockList);

          // re-filter existing content
          toggleBlockedContent();
        }

        function hideBlockList() {
          document.getElementById('blockListPop').style.display = 'none';
        }

        function prepPage() {
          var flag = getBlockFlag();
          getBlocklist();
          if (flag) {
            document.getElementById('isBlocking').checked = true;
            toggleBlockedContent();
          }
        }

        function pageOnLoad() {
          //  build blocker control gui
          var blockerDiv = document.createElement('div');
          blockerDiv.innerHTML = '<button id="showBlocklist" class="button">黑名单</button><input type="checkbox" id="isBlocking" /><span id="blockCounter" title="Currently Blocked"></span>';
          blockerDiv.style.cssText = 'position:fixed; bottom:2em; right:0.5em; width:9em; padding:0.5em; border-radius:0.25em; background-color:#D7EAF9; box-shadow:2px 2px 4px 0px rgba(0,0,0,0.5); text-align:center; cursor:pointer;';
          document.body.appendChild(blockerDiv);

          document.getElementById('showBlocklist').addEventListener('click', changeBlockListVisibility);
          document.getElementById('blockCounter').style.cssText = 'padding:0 4px; font-weight:bold';
          document.getElementById('isBlocking').addEventListener('change', toggleBlockedContent);

          //  block list
          var blockListDiv = document.createElement('div');
          blockListDiv.setAttribute('id', 'blockListPop');
          blockListDiv.innerHTML = '<span>修改ID,用逗号分隔,大小写敏感!</span>' + '<br/>' + '<textarea rows="10" cols="40" id="blockListInput" style="background-color:orange;color:black;font-size:10pt;"></textarea>' + '<br/>' + '<button id="updateBlockList">Update</button><span style="width:2em"></span><button id="closePop">Close</button>';
          blockListDiv.style.cssText = 'position:fixed; bottom:5.3em; right:0.5em; padding:0.5em; border-radius:0.25em; background-color:#D7EAF9; box-shadow:2px 2px 4px 0px rgba(0,0,0,0.5); text-align:center; display:none';
          document.body.appendChild(blockListDiv);
          document.getElementById('updateBlockList').addEventListener('click', updateBlockList);
          document.getElementById('closePop').addEventListener('click', hideBlockList);

          prepPage();
        }

        function ready(fn) {
          if (document.readyState !== 'loading') {
            fn();
          } else {
            document.addEventListener('DOMContentLoaded', fn);
          }
        }

        ready(pageOnLoad);
        })();
x1 图片
上次由 牛河梁 在 2025年 3月 25日 02:26 修改。
原因: 未提供修改原因
头像
mmking(上水)
论坛精英
论坛精英
帖子互动: 955
帖子: 6989
注册时间: 2023年 1月 25日 05:10

#2 Re: 【工具】—屏蔽烦你的id和版面文章的脚本

帖子 mmking(上水) »

屏蔽版面的功能还是不错的
凡所有相,皆是虚妄
头像
tdm
论坛精英
论坛精英
帖子互动: 544
帖子: 6998
注册时间: 2022年 7月 29日 19:21

#3 Re: 【工具】—屏蔽烦你的id和版面文章的脚本

帖子 tdm »

狂赞
头像
牛河梁(别问我是谁)楼主
论坛元老
论坛元老
2023年度十大优秀网友
2024年度优秀版主
牛河梁 的博客
帖子互动: 1282
帖子: 24573
注册时间: 2022年 11月 17日 21:21
联系:

#4 Re: 【工具】—屏蔽烦你的id和版面文章的脚本

帖子 牛河梁(别问我是谁)楼主 »

mmking 写了: 2025年 3月 25日 10:15 屏蔽版面的功能还是不错的
希望能促进买提和谐
头像
牛河梁(别问我是谁)楼主
论坛元老
论坛元老
2023年度十大优秀网友
2024年度优秀版主
牛河梁 的博客
帖子互动: 1282
帖子: 24573
注册时间: 2022年 11月 17日 21:21
联系:

#5 Re: 【工具】—屏蔽烦你的id和版面文章的脚本

帖子 牛河梁(别问我是谁)楼主 »

老牛这个自用版本/思路和老版本的不同:

1/ 老牛版不屏蔽板块入口。因为站方已经把板块入口可以折叠。有兴趣的可以自行去打开寻找版面或者自己可以收藏版面进入。所以没必要重新发明轮子。

2/ 老牛版屏蔽的是ID和指定版面上首页的文章(标题/链接/入口)。包括“最新帖子”,“今日十大热门话题”,“版主推荐主题”以及将来首页可能有的新板块里的文章链接。

解决的是网友投诉首页不干净问题。这个功能开发的时候还没有“版主推荐主题”。“版主推荐主题”出来的时候很好地兼容自动覆盖了。

如果大家有兴趣。老牛考虑增加关键词过滤。举例说,可以把标题里含有指定关键字,如“逼”、“完了”等等,的文章从首页屏蔽掉。
上次由 牛河梁 在 2025年 3月 25日 11:43 修改。
原因: 未提供修改原因
geust
论坛支柱
论坛支柱
帖子互动: 352
帖子: 8603
注册时间: 2022年 7月 23日 19:41

#6 Re: 【工具】—屏蔽烦你的id和版面文章的脚本

帖子 geust »

我只用Android手机上的edge,能用这个脚本么?
头像
牛河梁(别问我是谁)楼主
论坛元老
论坛元老
2023年度十大优秀网友
2024年度优秀版主
牛河梁 的博客
帖子互动: 1282
帖子: 24573
注册时间: 2022年 11月 17日 21:21
联系:

#7 Re: 【工具】—屏蔽烦你的id和版面文章的脚本

帖子 牛河梁(别问我是谁)楼主 »

geust 写了: 2025年 3月 26日 13:16 我只用Android手机上的edge,能用这个脚本么?
不知道。老牛手机上的Chrome好像不能用。
fantasist
知名作家
知名作家
帖子互动: 134
帖子: 1228
注册时间: 2022年 7月 24日 19:52

#8 Re: 【工具】—屏蔽烦你的id和版面文章的脚本

帖子 fantasist »

这个要狠狠地赞!现在论坛就缺block id的功能
phelan
论坛精英
论坛精英
帖子互动: 230
帖子: 6634
注册时间: 2022年 7月 22日 00:54

#9 Re: 【工具】—屏蔽烦你的id和版面文章的脚本

帖子 phelan »

手机Firefox怎么添加黑名单?
头像
牛河梁(别问我是谁)楼主
论坛元老
论坛元老
2023年度十大优秀网友
2024年度优秀版主
牛河梁 的博客
帖子互动: 1282
帖子: 24573
注册时间: 2022年 11月 17日 21:21
联系:

#10 Re: 【工具】—屏蔽烦你的id和版面文章的脚本

帖子 牛河梁(别问我是谁)楼主 »

phelan 写了: 2025年 4月 17日 12:07 手机Firefox怎么添加黑名单?
手机浏览器好像不支持TamperMonkey插件。
回复

回到 “加州华人”