您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Whoever put the super light gray border for the input fields on the site should be pricked to death by berry bushes
- // ==UserScript==
- // @name Safe Survival Clearer Input Field Border
- // @version 0.0.1
- // @description Whoever put the super light gray border for the input fields on the site should be pricked to death by berry bushes
- // @author Dia
- // @match https://store.safesurvival.net/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=safesurvival.net
- // @namespace wxw.moe/@dia
- // @run-at document-idle
- // @grant none
- // @license Unlicense
- // ==/UserScript==
- (function() {
- 'use strict';
- let inputs = document.getElementsByTagName("input");
- for (let i=0; i<inputs.length; i++){
- inputs[0].style.borderColor = "black";
- }
- })();