Skip to content
View 161043261's full-sized avatar
🐥
Focusing
🐥
Focusing
Block or Report

Block or report 161043261

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
161043261/README.md

Revolution

// ==UserScript==
// @name        UserFont
// @namespace   UserFont
// @match       https://github.com/*
// @version     0.0.0
// @grant       none
// @description UserFont
// ==/UserScript==

const fontFamily = "Iosevka Fixed SS04, Sarasa Fixed SC, monospace !important;";
(function (css) {
    let head, style;
    head = document.getElementsByTagName("head")[0];
    if (!head) {
        return;
    }
    style = document.createElement("style");
    style.innerHTML = css;
    head.appendChild(style);
})("code, .blob-code, .blob-code-marker, pre, .react-code-text, *{ font-family: " + fontFamily + " }");

Pinned

  1. plant-disease-detection plant-disease-detection Public archive

    Back-end project of plant disease detection platform

    Python