Greasy Fork is available in English.

Masnavi Mobile

Makes reading masnavi.net easier on mobile

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

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         Masnavi Mobile
// @description  Makes reading masnavi.net easier on mobile
// @version      1.2
// @grant        none
// @include      http://masnavi.net/*
// @license      MIT
// @namespace https://greasyfork.org/users/1463653
// ==/UserScript==


document.getElementsByClassName("border-container")[0].style.border = "0px" 

const divs = document.querySelectorAll('div');

divs.forEach(div => {
  if (div.style.width === '75%') {
    div.style.width = "100%";
  }
  
  div.style.border = "0px";
});



function replaceDoubleAsterisksWithBr(element) {
  element.childNodes.forEach(node => {
    if (node.nodeType === Node.TEXT_NODE) {
      const parts = node.textContent.split('**');
      if (parts.length > 1) {
        const fragment = document.createDocumentFragment();
        parts.forEach((part, index) => {
          fragment.appendChild(document.createTextNode(part));
          if (index < parts.length - 1) {
            fragment.appendChild(document.createElement('br'));
          }
        });
        node.replaceWith(fragment);
      }
    } else if (node.nodeType === Node.ELEMENT_NODE) {
      replaceDoubleAsterisksWithBr(node);
    }
  });
}

replaceDoubleAsterisksWithBr(document.body);