try to take over the world!
// ==UserScript== // @name jojodl解除搜索限制 // @namespace Tampermonkey for FireFox // @version 0.1 // @description try to take over the world! // @author You // @match https://jojodl.pw/* // @match https://jojodl.com/* // @grant none // ==/UserScript== (function() { 'use strict'; //alert("ABC"); var im; var bt; bt=document.getElementsByClassName("btn btn-secondary my-sm-0"); im=document.getElementsByClassName("form-control mr-sm-2"); im[1].disabled=false; bt[0].disabled=false; // Your code here... })();