Last active
November 7, 2022 10:28
-
-
Save twinsant/f5456442e080b2726ff0b18a8c1ae951 to your computer and use it in GitHub Desktop.
Tampermonkey script for focus input.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Focuse input | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://eth-converter.com/ | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=eth-converter.com | |
| // @grant none | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| // Your code here... | |
| console.log('Ready.'); | |
| $('#wei').focus(); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment