New Userscript

1-shot sword

  1. // ==UserScript==
  2. // @name New Userscript
  3. // @namespace https://poki.com/en/g/sword-masters
  4. // @version 2024-04-04
  5. // @description 1-shot sword
  6. // @author You
  7. // @match https://poki.com/en/g/sword-masters
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // (function() {
  17. const swords = document.querySelectorAll('.sword');
  18. swords.forEach(sword => sword.onclick = function() {
  19. this.style.display = 'none';
  20. });
  21.  
  22. })();