Kronos / Show Chinese Raw

// ==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" );
})();