Created
October 4, 2021 20:24
-
-
Save sguzman/e66ec976eed0d371fcfef63d6bdb5365 to your computer and use it in GitHub Desktop.
Autofocus on text area
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 Duolingo Text Area Autofocus | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author Salvador Guzman | |
// @match https://www.duolingo.com/skill/* | |
// @icon https://www.google.com/s2/favicons?domain=duolingo.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.getElementByTag('textarea').autofocus = true; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment