NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Show Chinese Raw // @namespace lnmtl_ChineseRaw // @version 0.2 // @license MIT // @description Always display Chinese raw in chapters on lnmtl.com // @author You // @match http*://lnmtl.com/chapter/* // @grant none // ==/UserScript== (function() { 'use strict'; let button = $('button.btn.js-toggle-original').not('.btnbtm2').first(); button.trigger( "click" ); })();