syosetu.com Remove emphasis dots

06/02/2024, 20:03:22

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 or Violentmonkey 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.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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;
})