爱问知识人查看所有回答

不用再点击“查看更多全部答案”了

  1. // ==UserScript==
  2. // @name 爱问知识人查看所有回答
  3. // @namespace gqqnbig.me
  4. // @version 0.1
  5. // @description 不用再点击“查看更多全部答案”了
  6. // @author gqqnbig
  7. // @match https://iask.sina.com.cn/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. $("#other_answer li").each(function()
  15. {
  16. $(this).css("display","");
  17. })
  18.  
  19. $(".item-list-more-page").detach();
  20. $("#otherAnswerPage").show();
  21. })();