New Userscript

try to take over the world

2021-08-12 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

  1. // ==UserScript==
  2. // @name New Userscript
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world
  6. // @author Shlong with the big dingdong
  7. // @match https://diep.io/
  8. // @icon https://www.google.com/s2/favicons?domain=diep.io
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. CanvasRenderingContext2D.prototype.fillText = new Proxy(CanvasRenderingContext2D.prototype.fillText, {
  13. apply(reference, _this, args) {
  14. if (_this.fillStyle == "#ffff90") {
  15. _this.fillStyle = "#03fcfc";
  16. }
  17. return reference.apply(_this, args);
  18. }
  19. });