Greasy Fork is available in English.

LeetCode sendBeacon fix

fix LeetCode in Firefox

  1. // ==UserScript==
  2. // @name LeetCode sendBeacon fix
  3. // @namespace griffi-gh145675
  4. // @match *://leetcode.com/problemset/
  5. // @grant none
  6. // @version 1.0
  7. // @author griffi-gh
  8. // @description fix LeetCode in Firefox
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. if(!navigator.sendBeacon) navigator.sendBeacon = () => {};