Skip to content

Instantly share code, notes, and snippets.

@twinsant
Last active November 7, 2022 10:28
Show Gist options
  • Select an option

  • Save twinsant/f5456442e080b2726ff0b18a8c1ae951 to your computer and use it in GitHub Desktop.

Select an option

Save twinsant/f5456442e080b2726ff0b18a8c1ae951 to your computer and use it in GitHub Desktop.
Tampermonkey script for focus input.
// ==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