Safe Survival Clearer Input Field Border

Whoever put the super light gray border for the input fields on the site should be pricked to death by berry bushes

  1. // ==UserScript==
  2. // @name Safe Survival Clearer Input Field Border
  3. // @version 0.0.1
  4. // @description Whoever put the super light gray border for the input fields on the site should be pricked to death by berry bushes
  5. // @author Dia
  6. // @match https://store.safesurvival.net/*
  7. // @icon https://www.google.com/s2/favicons?sz=64&domain=safesurvival.net
  8. // @namespace wxw.moe/@dia
  9. // @run-at document-idle
  10. // @grant none
  11. // @license Unlicense
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. let inputs = document.getElementsByTagName("input");
  17. for (let i=0; i<inputs.length; i++){
  18. inputs[0].style.borderColor = "black";
  19. }
  20. })();