Skip to content

Instantly share code, notes, and snippets.

@sguzman
Created October 4, 2021 20:24
Show Gist options
  • Save sguzman/e66ec976eed0d371fcfef63d6bdb5365 to your computer and use it in GitHub Desktop.
Save sguzman/e66ec976eed0d371fcfef63d6bdb5365 to your computer and use it in GitHub Desktop.
Autofocus on text area
// ==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