GitHub Black Background

Change background color to AMOLED black on GitHub

当前为 2024-12-21 提交的版本,查看 最新版本

// ==UserScript==
// @name           GitHub Black Background
// @namespace      https://github.com/AbdurazaaqMohammed
// @version        1.0.1
// @author         Abdurazaaq Mohammed
// @description    Change background color to AMOLED black on GitHub
// @match          https://github.com/*
// @homepage       https://github.com/AbdurazaaqMohammed/userscripts
// @license        The Unlicense
// @supportURL     https://github.com/AbdurazaaqMohammed/userscripts/issues
// @run-at         document-start
// @grant          none
// ==/UserScript==
(function() {
	'use strict';
	(document.head || document.documentElement).appendChild(document.createElement('style')).textContent = 'div:not(button div) { background-color: black !important; }';
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址