Skip to content

Instantly share code, notes, and snippets.

Created June 15, 2016 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/c041dbe10c9dc884dca75833c42a46cf to your computer and use it in GitHub Desktop.
Save anonymous/c041dbe10c9dc884dca75833c42a46cf to your computer and use it in GitHub Desktop.
Tampermonkey - enable movescount.com recovery time edit
// ==UserScript==
// @name MC_RecoveryTime
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Movescount - enable Recovery Time edits
// @author You
// @match http*://www.movescount.com/moves/move*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant none
// ==/UserScript==
waitForKeyElements (
"#recoveryTime",
RemoveReadOnly
);
function RemoveReadOnly (jNode)
{
jNode.removeAttr("readonly");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment