syosetu.com Remove emphasis dots

06/02/2024, 20:03:22

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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!)

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!)

// ==UserScript==
// @name        syosetu.com Remove emphasis dots
// @namespace   Violentmonkey Scripts
// @match       https://novel18.syosetu.com/*
// @match       https://ncode.syosetu.com/*
// @run-at      document-end
// @grant       none
// @require     https://cdn.jsdelivr.net/npm/@violentmonkey/dom@2
// @version     1.0
// @author      -
// @license     GPL-3
// @description 06/02/2024, 20:03:22
// ==/UserScript==
VM.observe(document.body, () => {
  let nodes = document.getElementsByTagName('p');
  for(let node of nodes) {
    if (node.innerHTML.includes('<ruby>')) {
      node.innerHTML = node.innerText.replaceAll('・', '');
    }

  }
  if (nodes.length > 1)
    return true;
})