YWOT Menu Toggle

Automatically toggles "Show coordinates" and "Disable momentum".

// ==UserScript==
// @name         YWOT Menu Toggle
// @namespace    https://greasyfork.org/en/users/501887-spitfirex86
// @version      1.1
// @description  Automatically toggles "Show coordinates" and "Disable momentum".
// @author       ~spitfire
// @match        http*://www.yourworldoftext.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var $ = window.jQuery;
    $(window).load(function() {
        $('#nav').find('input').attr('checked', true).click().attr('checked', true);
    });
})();