Skip to content
View 161043261's full-sized avatar
🎯
Focusing
🎯
Focusing
  • Republic of Genshin
  • 15:18 (UTC +08:00)
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        Sarasa Fixed SC
// @namespace   Sarasa Fixed SC
// @match       https://github.com/*
// @match       https://zhuanlan.zhihu.com/*
// @version     0.0.0
// @grant       none
// @description Sarasa Fixed SC
// ==/UserScript==

const fontFamily = "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

    Back-end project of plant disease detection platform

    Python