百度贴吧 - 移除图片折叠

移除图片折叠

  1. // ==UserScript==
  2. // @name 百度贴吧 - 移除图片折叠
  3. // @version 0.1.0
  4. // @description 移除图片折叠
  5. // @author pana
  6. // @namespace https://greasyfork.org/zh-CN/users/193133-pana
  7. // @license GNU General Public License v3.0 or later
  8. // @match *://tieba.baidu.com/p/*
  9. // @grant none
  10. // @noframes
  11. // ==/UserScript==
  12. (function () {
  13. 'use strict';
  14. window.onload = () => {
  15. document.querySelectorAll('.replace_tip').forEach(ele => {
  16. ele.style.display = 'none';
  17. const parent = ele.parentElement;
  18. parent && (parent.style.height = 'auto');
  19. const content = ele.closest('.j_d_post_content');
  20. if (content) {
  21. const area = content.querySelector('.cnt_act_vote_area');
  22. area && (area.style.zIndex = '10');
  23. }
  24. });
  25. };
  26. })();