您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Let JetBrains take over the world.
当前为
// ==UserScript== // @name JetBrains the World // @name:ja 世界をジェットブレインズに // @version 2023-12-28 // @description Let JetBrains take over the world. // @description:ja ジェットブレインズに世界を任せよう。 // @author PowfuArras // @match *://*/* // @icon https://cdn.glitch.global/0569f2ce-2c37-40fa-ae0e-360edca67c05/0978a0f9-98ab-4629-ac25-bf4b0b2abb21.image.png?v=1703726101721 // @grant none // @run-at document-start // @namespace https://greasyfork.org/users/951187 // ==/UserScript== (function() { "use strict"; const fontLinkElement = document.createElement('link'); fontLinkElement.rel = 'stylesheet'; fontLinkElement.href = 'https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap'; document.head.appendChild(fontLinkElement); const style = document.createElement('style'); style.innerHTML = `* { font-family: 'JetBrains Mono', monospace !important; }`; document.head.appendChild(style); })();