Comic sans is life, More support for sites soon, im adding sites currently
当前为
// ==UserScript==
// @name Comic sans is life
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Comic sans is life, More support for sites soon, im adding sites currently
// @author Guy
// @match https://chatgpt.com/*
// @match https://youtube.com/*
// @match https://picsart.com/*
// @match https://facebook.com/*
// @match https://x.com/*
// @match https://twitter.com/*
// @grant none
// @license CC-BY-4.0
// ==/UserScript==
(function() {
'use strict';
// Create a new style element
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '* { font-family: "Comic Sans MS", "Comic Sans", cursive !important; }';
// Append the style element to the head of the document
document.head.appendChild(style);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址