Custom Font

set font-family to all elements.

اعتبارا من 11-11-2020. شاهد أحدث إصدار.

// ==UserScript==
// @name         Custom Font
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  set font-family to all elements.
// @author       117503445
// @match        *
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var Elements = document.getElementsByTagName("*");
    var i;
    for (i in Elements) {
    if (Elements[i].innerText != null) {
        Elements[i].style.fontFamily = "microsoft yahei mono"
    }
}
})();