Skip to content
View 161043261's full-sized avatar
🆙
🆙
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

Top Langs

This TamperMonkey script may help you beautify your GitHub (by customizing fonts)

// ==UserScript==
// @name         custom fonts
// @namespace    https://github.com/161043261/
// @version      1.0.0
// @description  custom fonts
// @author       Tiancheng
// @match        https://github.com/*
// @match        https://other.websites
// @grant        none
// ==/UserScript==

(function () {
    const fontFamily = 'Iosevka SS04, Sarasa Mono SC' // Your custom fonts
    const style = document.createElement("style");
    style.rel = "stylesheet";
    // style.type = "text/css";
    style.innerHTML = "code, pre, .blob-code, .blob-code-content, .blob-code-marker, .blob-num"
        + ", *" // Comment this line if you only want to customize monospaced fonts
        + `{ font-family: ${fontFamily}, monospace !important; }`;
    // document.getElementsByTagName('head')[0].appendChild(style);
    document.querySelector('head').appendChild(style);
})();

Pinned Loading

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

    plant disease detection (pytorch + vue2 + fastapi)

    Python