Mobile zhihu.com restriction remover

去除知乎手机网页版只能查看一个答案全文的限制。

  1. // ==UserScript==
  2. // @name Mobile zhihu.com restriction remover
  3. // @namespace http://litpweb.com/
  4. // @version 0.1.1
  5. // @description 去除知乎手机网页版只能查看一个答案全文的限制。
  6. // @author Tianpeng
  7. // @match https://www.zhihu.com/question/*
  8. // @require https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. var answers = $("div.RichContent.is-collapsed.RichContent--unescapable.RichContent--withMask");
  16. answers.removeClass("is-collapsed");
  17. answers.children("div.RichContent-inner.RichContent-inner--collapsed").removeAttr("style");
  18. })();