Scroll - qq.com

2023/5/12 18:25:56

  1. // ==UserScript==
  2. // @name Scroll - qq.com
  3. // @namespace Violentmonkey Scripts
  4. // @match https://wx.qq.com/
  5. // @grant none
  6. // @version 1.0
  7. // @license GNU GPLv3
  8. // @author -
  9. // @description 2023/5/12 18:25:56
  10. // ==/UserScript==
  11.  
  12.  
  13. (function () {
  14. 'use strict';
  15.  
  16. document.getElementById('J_NavChatScrollBody').parentElement.style.overflow = "auto";
  17. document.getElementById('J_NavReadScrollBody').parentElement.style.overflow = "auto";
  18. document.getElementById('navContact').parentElement.style.overflow = "auto";
  19.  
  20. })();