syosetu.com Remove emphasis dots

06/02/2024, 20:03:22

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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