Greasy Fork is available in English.
修改网页字体,支持不同网站不同规则
设置脚本对网页的匹配
// @match *://flowus.cn/*
// @match *://*.baidu.com*.cn/*
设置 CSS 设置规则
数组项依次是:
var rules = [
['host', 'flowus.cn', defaultFont],
['href', /^http.*?wolai.com/, '微软雅黑'],
['host', 'www.baidu.com', {
color: 'red',
fontSize: '20px'
}]
]