讓網頁使用瀏覽器設置的sans-serif字體,放在fontFamily前面的字體會被優先使用。參考:https://www.cnblogs.com/yaomumu/p/12759060.html
注意:
- @match要修改一下,匹配所有的網頁
- font-family需要改寫為駝峰形式fontFamily
// ==UserScript==
// @name use sans-serif
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http*://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
/*document.body.style.backgroundColor = '#00ee00'*/
//document.body.style.cssText += 'sans-serif';
document.body.style.fontFamily='sans-serif';
// Your code here...
})();