Greasy Fork 还支持 简体中文。

Disable Laggy Battle.net Forum Scroll Handler

Remove Battle.net Forum scrolling performance penalty

  1. // ==UserScript==
  2. // @name Disable Laggy Battle.net Forum Scroll Handler
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Remove Battle.net Forum scrolling performance penalty
  6. // @author github.com/blaenk
  7. // @match https://us.battle.net/forums/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. $(window).unbind('scroll');
  14. })();