mmtf / Fix Original Chinese in LNMTL for Google Translation

// ==UserScript==
// @name         Fix Original Chinese in LNMTL for Google Translation
// @namespace    mmtf
// @version      0.1
// @license      MIT
// @description  make life and translations better!
// @author       mmtf
// @match        https://lnmtl.com/chapter/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $(document).ready(function (){
        $('.original t').each(function (){$(this).replaceWith($(this).data("title"));});
        $('.original').animate({
            height: 'toggle',
            opacity: 'toggle'
        });
        // TODO: Implement Auto-Google Translate using the free google translate API.
    });
})();