JetBrains the World

Let JetBrains take over the world.

目前为 2023-12-28 提交的版本。查看 最新版本

// ==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);
})();