ColorHunt dark mode

1/7/2023, 10:45:49 PM

当前为 2023-01-07 提交的版本,查看 最新版本

// ==UserScript==
// @name        ColorHunt dark mode
// @namespace   Violentmonkey Scripts
// @match       https://colorhunt.co/*
// @grant       none
// @version     1.0
// @author      RedTTG
// @description 1/7/2023, 10:45:49 PM
// ==/UserScript==

var head  = document.getElementsByTagName('head')[0];
var link  = document.createElement('link');
link.rel  = 'stylesheet';
link.type = 'text/css';
link.href = 'https://rostshkolo.free.bg/colorhunt.css';
link.media = 'all';
head.appendChild(link);