【工具】-屏蔽烦你的id插件

版主: huangchong

头像
supermassive楼主
职业作家
职业作家
帖子: 591
注册时间: 7月 31, 2022, 4:58 pm
昵称(选填): 泥橙

【工具】-屏蔽烦你的id插件

帖子 supermassive楼主 »

(Huangchong 编辑)https://www.tampermonkey.net/

从春卷老师的脚本改的,桌面端使用方法:
  • 安装tampermonkey(Firefox/Chrome/Edge, etc.)
  • tampermonkey打开dashboard
  • 点+号,新建脚本,copy&paste(覆盖掉TM自己生成的脚本模板)
已知问题:
  • 在proflat主题下无效
如果发现bug想要俺修,请确认是最新的脚本.

如何汇报问题
  • 1. 确保所有的code全部copy & paste进了油猴
  • 2. 你是用的什么浏览器
  • 3. 你用的什么主题(控制面板->偏好设置->我的论坛风格)
  • 4. 最好有浏览器截图,可以把书签地址栏隐藏,只需要在某个主题下的截图

手机端 update:
  • 10/17/22, 修复版面上失效的问题
  • 7/9/23, 修复无法添加部分含有空格id的问题

代码: 全选

              // ==UserScript==
      // @name         NewMitbbs-bot-blocker
      // @namespace    http://tampermonkey.net/
      // @version      0.1
      // @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*
      // @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 changePostVisibility() {
          var blockList = getBlocklist();
          var flag = getBlockFlag();
          // if list is not empty
          var counter = 0;
          if (blockList) {
            var taolunDiv = document.querySelector('div.forumbg:not(.announcement)');
            if(taolunDiv == null)
              taolunDiv = document.querySelector('div.sn-cat-header:not(.announcement)');
            // yeah yeah yeah magic number, whatever
            // this will miss the first one though, nice try langfang coder
            var userIDtdNodeList = taolunDiv.querySelectorAll('li.row');
            console.log(userIDtdNodeList.length);
            userIDtdNodeList.forEach(function (td) {
              // damn, now i miss jquery/zepto
              var id;
              if(td.querySelector('div.topic-poster') != null){
                id = td.querySelector('div.topic-poster').querySelector('span.username').textContent;
                console.log("debug 3");
              }else if(td.querySelector('div.responsive-show:not([style*="display:none"]') != null){
                id = td.querySelector('div.responsive-show:not([style*="display:none"]').querySelector('span.username').textContent;
                console.log("debug 2");
              }else{
                console.log("couldn't find td");
              }
                //  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
              console.log("op's id is " + id);
              if (blockList.indexOf(id) > -1) {
                if (flag) {
                  td.style.display = 'none';
                  console.log(id + "'s post has been set as invisible");
                  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);
          var pageType = locationGuesser();
          switch (pageType) {
            case 1:
              changeReplyVisibility();
              break;
            case -1:
              changePostVisibility();
              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(/,+$/, '');
          //  remove line break, trailing comma
          newBlockList = newBlockList.replace(/(\r\n|\n|\r)/gm, '').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);
        })();

上次由 supermassive 在 7月 9, 2023, 12:25 pm,总共编辑 13 次。
雅利安正牌婆罗门大厨
头像
F150
论坛支柱
论坛支柱
F150 的博客
帖子: 10061
注册时间: 7月 26, 2022, 10:47 am

Re: [bug警告]-屏蔽烦你的id插件

帖子 F150 »

站长还不来删帖封号?稍微一改就可以炸版了

勿谓言之不预也
头像
supermassive楼主
职业作家
职业作家
帖子: 591
注册时间: 7月 31, 2022, 4:58 pm
昵称(选填): 泥橙

Re: [bug警告]-屏蔽烦你的id插件

帖子 supermassive楼主 »

F150 写了: 8月 9, 2022, 2:55 pm 站长还不来删帖封号?稍微一改就可以炸版了

勿谓言之不预也
脑子是个好东西,建议长一个
雅利安正牌婆罗门大厨
头像
huangchong
论坛元老
论坛元老
帖子: 24215
注册时间: 7月 22, 2022, 1:22 am
昵称(选填): 净坛使者

Re: [bug警告]-屏蔽烦你的id插件

帖子 huangchong »

supermassive 写了: 8月 9, 2022, 2:11 pm 从春卷老师的脚本改的,使用方法:
  • tampermonkey打开dashboard
  • 点+号,新建脚本,copy&paste
alpha版,只有部分功能且bug多多,专门针对某些不能屏蔽的版主

代码: 全选


    

    // ==UserScript==
    // @name         NewMitbbs-bot-blocker
    // @namespace    http://tampermonkey.net/
    // @version      0.1
    // @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*
    // @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';
      var pageType = locationGuesser();

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

      function getBlocklist() {
        var blockList = localStorage.getItem(storageKey);
        console.log("inside getBlocklist: " + blockList);
        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 changePostVisibility() {
        var blockList = getBlocklist();
        console.log("blockList:" + blockList)
        var flag = getBlockFlag();
        console.log("getBlockFlag: " + flag);
        // if list is not empty
        var counter = 0;
        if (blockList) {
          var taolunDiv = document.querySelector('div.forumbg:not(.announcement)');
          // yeah yeah yeah magic number, whatever
          // this will miss the first one though, nice try langfang coder
          var userIDtdNodeList = taolunDiv.querySelectorAll('li.row');
          console.log(userIDtdNodeList);
          userIDtdNodeList.forEach(function (td) {
            // damn, now i miss jquery/zepto
            var id = td.querySelector('div.topic-poster').querySelector('span.username').textContent;
            console.log(id);
            //  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 = '';
            console.log(blockList);
            //  yeah, nested if statements
            if (blockList.indexOf(id) > -1) {
              if (flag) {
                console.log(td);
                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;
          // //  another magic number!
          // var userMenu = post.querySelector('td.jiahui-4 td[width="83%"]');
          var userID = reply.querySelector('span.username').textContent;
          // var hasButton = userMenu.lastChild.innerHTML !== undefined;
          // if (!hasButton) {
          //   var blockButton = document.createElement('span');
          //   blockButton.setAttribute('class', 'buttonHolder');
          //   blockButton.innerHTML = '&nbsp;&nbsp;<button class="addToBlock" title="' + userID + '">屏蔽!</button>';
          //   userMenu.appendChild(blockButton);
          // }
          //  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) {
            console.log("tag 1:" + userID);
            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();
            }
          });
        });
      }

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

      function changeBlockListVisibility() {
        var notVisible = document.getElementById('blockListPop').style.display === 'none';
        if (notVisible) {
          document.getElementById('blockListInput').value = getBlocklist().join();
          document.getElementById('blockListPop').style.display = '';
        } else {
          updateBlockList();
          document.getElementById('blockListPop').style.display = 'none';
        }
      }

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


这个bbs可以贴code 光这就比老邢的破系统强不知道哪里去了
头像
supermassive楼主
职业作家
职业作家
帖子: 591
注册时间: 7月 31, 2022, 4:58 pm
昵称(选填): 泥橙

Re: [bug警告]-屏蔽烦你的id插件

帖子 supermassive楼主 »

huangchong 写了: 8月 9, 2022, 3:33 pm 这个bbs可以贴code 光这就比老邢的破系统强不知道哪里去了
俺做的那个插件有个版本可以在老站写markdown,事实上也能嵌入code

但是并没卵用,没人用
雅利安正牌婆罗门大厨
头像
zeami
著名点评
著名点评
帖子: 4358
注册时间: 7月 25, 2022, 3:51 pm
昵称(选填): 贼阿米

Re: [bug警告]-屏蔽烦你的id插件

帖子 zeami »

supermassive 写了: 8月 9, 2022, 3:36 pm 俺做的那个插件有个版本可以在老站写markdown,事实上也能嵌入code

但是并没卵用,没人用
老站强迫加空行。。
头像
supermassive楼主
职业作家
职业作家
帖子: 591
注册时间: 7月 31, 2022, 4:58 pm
昵称(选填): 泥橙

Re: [bug警告]-屏蔽烦你的id插件

帖子 supermassive楼主 »

zeami 写了: 8月 9, 2022, 3:40 pm 老站强迫加空行。。
阿米哥俺买的便宜火板今天寄到了
雅利安正牌婆罗门大厨
头像
zeami
著名点评
著名点评
帖子: 4358
注册时间: 7月 25, 2022, 3:51 pm
昵称(选填): 贼阿米

Re: [bug警告]-屏蔽烦你的id插件

帖子 zeami »

supermassive 写了: 8月 9, 2022, 3:42 pm 阿米哥俺买的便宜火板今天寄到了
五个小时各种姿势装vpn,结果小国旗取消了。。
头像
supermassive楼主
职业作家
职业作家
帖子: 591
注册时间: 7月 31, 2022, 4:58 pm
昵称(选填): 泥橙

Re: [bug警告]-屏蔽烦你的id插件

帖子 supermassive楼主 »

zeami 写了: 8月 9, 2022, 3:44 pm 五个小时各种姿势装vpn,结果小国旗取消了。。
挺好,大家都别麻烦了

windscribe不错,免费的,俺有50GB/mo的账号
雅利安正牌婆罗门大厨
头像
zeami
著名点评
著名点评
帖子: 4358
注册时间: 7月 25, 2022, 3:51 pm
昵称(选填): 贼阿米

Re: [bug警告]-屏蔽烦你的id插件

帖子 zeami »

supermassive 写了: 8月 9, 2022, 3:46 pm 挺好,大家都别麻烦了

windscribe不错,免费的,俺有50GB/mo的账号
现在不敢不麻烦了啊,不定哪天重新上线小旗。。
头像
huangchong
论坛元老
论坛元老
帖子: 24215
注册时间: 7月 22, 2022, 1:22 am
昵称(选填): 净坛使者

Re: [bug警告]-屏蔽烦你的id插件

帖子 huangchong »

supermassive 写了: 8月 9, 2022, 3:42 pm 阿米哥俺买的便宜火板今天寄到了
什么火板? fireHD? 多少钱 多大?慢吗?
头像
supermassive楼主
职业作家
职业作家
帖子: 591
注册时间: 7月 31, 2022, 4:58 pm
昵称(选填): 泥橙

Re: [bug警告]-屏蔽烦你的id插件

帖子 supermassive楼主 »

huangchong 写了: 8月 9, 2022, 4:16 pm 什么火板? fireHD? 多少钱 多大?慢吗?
https://www.amazon.com/Fire-HD-10-tablet/dp/B08BX7FV5L

标准的2021版,MT8183 4x A73 +4x A55 3GB RAM,应该比snapdragon 835差一点点不多

呵呵你想要吗,俺可以给你原价分一台,我买了好几个
雅利安正牌婆罗门大厨
头像
huangchong
论坛元老
论坛元老
帖子: 24215
注册时间: 7月 22, 2022, 1:22 am
昵称(选填): 净坛使者

Re: [bug警告]-屏蔽烦你的id插件

帖子 huangchong »

supermassive 写了: 8月 9, 2022, 4:21 pm https://www.amazon.com/Fire-HD-10-tablet/dp/B08BX7FV5L

标准的2021版,MT8183 4x A73 +4x A55 3GB RAM,应该比snapdragon 835差一点点不多

呵呵你想要吗,俺可以给你原价分一台,我买了好几个
我有个老版本的 特别慢 不过其实看书还凑合
这东西好处是又便宜 又轻 又大 我给它装了个弹性布条的拉手 晚上 走路的时候看书特别合适

新的就不要了 我现在家里两个平板 两个笔记本 两个台式机 选择困难 非常严重
头像
supermassive楼主
职业作家
职业作家
帖子: 591
注册时间: 7月 31, 2022, 4:58 pm
昵称(选填): 泥橙

Re: [bug警告]-屏蔽烦你的id插件

帖子 supermassive楼主 »

huangchong 写了: 8月 9, 2022, 4:32 pm 我有个老版本的 特别慢 不过其实看书还凑合
这东西好处是又便宜 又轻 又大 我给它装了个弹性布条的拉手 晚上 走路的时候看书特别合适

新的就不要了 我现在家里两个平板 两个笔记本 两个台式机 选择困难 非常严重
玩过老版的,好像是4个a55(记错了,2x a72, 2x a53),性能差一些,记得当时电池特别好

后来就一直用tab s7,直到前几天trade in了

前天打折看到$55,没忍住跳了
雅利安正牌婆罗门大厨
头像
huangchong
论坛元老
论坛元老
帖子: 24215
注册时间: 7月 22, 2022, 1:22 am
昵称(选填): 净坛使者

Re: [bug警告]-屏蔽烦你的id插件

帖子 huangchong »

supermassive 写了: 8月 9, 2022, 4:36 pm 玩过老版的,好像是4个a55(记错了,2x a72, 2x a53),性能差一些,记得当时电池特别好

后来就一直用tab s7,直到前几天trade in了

前天打折看到$55,没忍住跳了
是的 电池超长也是个特点
头像
zeami
著名点评
著名点评
帖子: 4358
注册时间: 7月 25, 2022, 3:51 pm
昵称(选填): 贼阿米

Re: [bug警告]-屏蔽烦你的id插件

帖子 zeami »

huangchong 写了: 8月 9, 2022, 4:32 pm 我有个老版本的 特别慢 不过其实看书还凑合
这东西好处是又便宜 又轻 又大 我给它装了个弹性布条的拉手 晚上 走路的时候看书特别合适

新的就不要了 我现在家里两个平板 两个笔记本 两个台式机 选择困难 非常严重
晕,购物狂啊。我在工地曾经有过三个台式机一个手提,这就是设备巅峰时期了还不是自己买的
头像
huangchong
论坛元老
论坛元老
帖子: 24215
注册时间: 7月 22, 2022, 1:22 am
昵称(选填): 净坛使者

Re: [bug警告]-屏蔽烦你的id插件

帖子 huangchong »

zeami 写了: 8月 9, 2022, 4:59 pm 晕,购物狂啊。我在工地曾经有过三个台式机一个手提,这就是设备巅峰时期了还不是自己买的
比不上超重
fhnan
论坛精英
论坛精英
帖子: 5573
注册时间: 7月 29, 2022, 12:50 am

Re: [bug警告]-屏蔽烦你的id插件

帖子 fhnan »

zeami 写了: 8月 9, 2022, 3:44 pm 五个小时各种姿势装vpn,结果小国旗取消了。。
才注意到 小国旗取消了。
怕人告站主侵犯隐私?
买买提纪检委书记
头像
huangchong
论坛元老
论坛元老
帖子: 24215
注册时间: 7月 22, 2022, 1:22 am
昵称(选填): 净坛使者

Re: [bug警告]-屏蔽烦你的id插件

帖子 huangchong »

fhnan 写了: 8月 9, 2022, 5:20 pm 才注意到 小国旗取消了。
怕人告站主侵犯隐私?
系统版说 vpn来的没效果 还有点系统负担
头像
supermassive楼主
职业作家
职业作家
帖子: 591
注册时间: 7月 31, 2022, 4:58 pm
昵称(选填): 泥橙

Re: [bug警告]-屏蔽烦你的id插件

帖子 supermassive楼主 »

huangchong 写了: 8月 9, 2022, 5:27 pm 系统版说 vpn来的没效果 还有点系统负担
给网友看还是有效果的

比如俺前几天一直在印度
雅利安正牌婆罗门大厨
回复

回到 “肚皮舞运动(Joke)”