// ==UserScript== // @name Whatsapp quircks // @version 1.0.0 // @description Some Whatsapp quircks that I have to set // @author moreka // @match *://*.whatsapp.com/* // @run-at document-end // ==/UserScript== (function() { 'use strict'; document.addEventListener('load', () => { if (document.getElementById("farsi-style") === null) { var style = document.createElement('style'); style.id = "farsi-style"; style.innerHTML = `span[data-testid="selectable-text"][dir="rtl"] span { font-family: "Vazirmatn RD UI" !important; } span[dir="rtl"] { font-family: "Vazirmatn RD UI" !important; } footer p[dir="rtl"] span { font-family: "Vazirmatn RD UI" !important; }`; document.head.appendChild(style); } }, true); })();