使用阿里巴巴普惠体作为网页默认字体

网页字体替换为阿里巴巴普惠体(优先)或微软雅黑

// ==UserScript==
// @name           使用阿里巴巴普惠体作为网页默认字体
// @description    网页字体替换为阿里巴巴普惠体(优先)或微软雅黑
// @include        *:*
// @author         xiaofeng
// @version        1.08
// @namespace https://greasyfork.org/users/704275
// ==/UserScript==
(function() {
    function addStyle(rules) {
        var styleElement = document.createElement('style');
        styleElement.type = 'text/css';
        document.getElementsByTagName('head')[0].appendChild(styleElement);
        styleElement.appendChild(document.createTextNode(rules));
    }

    addStyle('body,form,div,ul,ol,li,h1,h2,h3,h4,h5,h6,span,table,tr,th,td,p,input,dl,dt,dd,ul,ol,li,input,textarea,a,label,b {font-family : "阿里巴巴普惠体","Alibaba Sans","微软雅黑","Microsoft YaHei" !important;}');
})();