DC - Digimobile

Allow player to write digicode on DreadCast

目前為 2019-11-05 提交的版本,檢視 最新版本

// ==UserScript==
// @name         DC - Digimobile
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Allow player to write digicode on DreadCast
// @author       Ajira
// @match        https://www.dreadcast.net/Main
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.getElementById("zone_lightBox").addEventListener ('DOMNodeInserted', function() {
        var digiInput = document.getElementById("lb_textinput_digicode");
        if (digiInput == null) { return; }
        digiInput.setAttribute("onblur", "");
        digiInput.setAttribute("onfocus", "");
    }, false);
})();