Greasy Fork is available in English.
网页字体替换为微软雅黑并加入text-shadow
当前为
// ==UserScript==
// @name 网页字体替换为微软雅黑+阴影
// @namespace heartnn
// @description 网页字体替换为微软雅黑并加入text-shadow
// @include *:*
// @author heartnn
// @homepage https://www.heartnn.com/
// @version 1.0
// ==/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('* {font-family : "Microsoft YaHei","iconfont","FontAwesome"}');
addStyle('*:not([class*="bilibili-danmaku"]):not([style*="background: rgba"]){text-shadow: 0 0 0.01em rgba(0,0,0,0.5) !important;}');
})();