知乎可关注

解除网页端知乎无法关注用户和问题的限制

目前為 2019-07-07 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name 知乎可关注
  3. // @namespace https://gf.qytechs.cn/zh-CN/users/208194-lz0211
  4. // @version 0.1
  5. // @description 解除网页端知乎无法关注用户和问题的限制
  6. // @author You
  7. // @match https://www.zhihu.com/*
  8. // @include https://www.zhihu.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var btns = document.querySelectorAll('.FollowButton');
  15. for(var i=0;i<btns.length;i++){
  16. var name = btns[i].className;
  17. btns[i].className = name.replace(/\s+FollowButton\s+/,' ');
  18. }
  19. // Your code here...
  20. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址