Greasy Fork is available in English.

LNMTL DATES

date and time in ISD format

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name LNMTL DATES
// @namespace Violentmonkey Scripts
// @match https://lnmtl.com/novel/*
// @require https://unpkg.com/moment
// @description date and time in ISD format
// @version 0.2
// @grant none
// ==/UserScript==

console.log("I am alive.");

var dates_arr = document.getElementsByClassName("label-default");

function addDate(date,hours,minutes){
  return moment(date.innerHTML,'YYYY-MM-DD hh:mm').add(hours,'hour').add(minutes,'minutes').format("YYYY-MMM-DD hh:mm");
}

for(var i = 0; i<dates_arr.length; i++ ){
  dates_arr[i].innerHTML = addDate(dates_arr[i], 5,30);
}