it1352 view all

it1352.com 查看全部内容,不必登陆

  1. // ==UserScript==
  2. // @name it1352 view all
  3. // @name:zh-CN it1352 view all
  4. // @name:zh-TW it1352 view all
  5. // @name:en it1352 view all
  6. // @version 0.1
  7. // @author LoganGong
  8. // @namespace http://tampermonkey.net/
  9. // @description it1352.com 查看全部内容,不必登陆
  10. // @description:zh-CN it1352.com 查看全部内容,不必登陆
  11. // @description:zh-TW it1352.com 查看全部内容,不必登陆
  12. // @description:en it1352.com view all the content
  13. // @match *://it1352.com/*
  14. // @match *://www.it1352.com/*
  15. // @grant GM_registerMenuCommand
  16. // @grant GM_unregisterMenuCommand
  17. // @grant GM_openInTab
  18. // @grant GM_getValue
  19. // @grant GM_setValue
  20. // @grant GM_notification
  21. // @license MIT
  22. // @run-at document-end
  23. // ==/UserScript==
  24.  
  25. (function() {
  26. 'use strict';
  27. var IT1352 = "www.it1352.com";
  28. var HOST = document.location.host;
  29. var SELECTOR = ".arc-body-main";
  30. var MORESELECTOR = ".arc-body-main-more";
  31. if(HOST === IT1352) {
  32. var mains = document.querySelectorAll(SELECTOR);
  33. var mores = document.querySelectorAll(MORESELECTOR);
  34. setTimeout(function() {
  35. if(mains && mains.length) {
  36. mains.forEach(function(item) { item.style.height = "auto" });
  37. }
  38. if(mores && mores.length) {
  39. mores.forEach(function(item) {item.style.display = "none" });
  40. }
  41. }, 500);
  42. }
  43. })();

QingJ © 2025

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