Better FPS Everywhere In Your Browser!

It doesnt have any toggles, everything is simple: you use it - it auto runs and makes you fps better.

  1. // ==UserScript==
  2. // @name Better FPS Everywhere In Your Browser!
  3. // @namespace Better FPS Everywhere In Your Browser!
  4. // @version none
  5. // @description It doesnt have any toggles, everything is simple: you use it - it auto runs and makes you fps better.
  6. // @author Nexo#9141
  7. // @match *://*/*
  8. // @require http://code.jquery.com/jquery-3.3.1.min.js
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. setInterval(function() {
  13. window.location.native_resolution = true;
  14. window.devicePixelRatio = 0.8;
  15. }, 1000)