您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
輕鬆修改全部網站的字體(Roboto字體)
// ==UserScript== // @name Chrome字體改善 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 輕鬆修改全部網站的字體(Roboto字體) // @author Weiren // @match *://*/* // @grant none // ==/UserScript== (function() { 'use strict'; // 加載 Google Fonts 的 Roboto 字體 const fontLink = document.createElement('link'); fontLink.href = 'https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'; fontLink.rel = 'stylesheet'; document.head.appendChild(fontLink); // 指定新字體為 Roboto const newFont = 'Roboto, Arial, sans-serif'; // 建立新的樣式表 const style = document.createElement('style'); style.type = 'text/css'; style.textContent = ` * { font-family: ${newFont} !important; } `; // 將樣式表加入到頁面中 document.head.appendChild(style); })();