GitHub Hide Suggested Repository Name

Hides GitHub Suggested Repository Name

当前为 2024-02-14 提交的版本,查看 最新版本

// ==UserScript==
// @name          GitHub Hide Suggested Repository Name
// @namespace     http://userstyles.org
// @description   Hides GitHub Suggested Repository Name
// @author        636597
// @match         https://*.github.com/new*
// @run-at        document-start
// @version       0.1
// ==/UserScript==
(function() {
	let css = 'button[aria-label*="suggested"] {display: none !important;}';
	let head = document.head || document.getElementsByTagName('head')[0];
	let style = document.createElement('style');
	head.appendChild(style);
	style.type = 'text/css';
	if ( style.styleSheet ){
		style.styleSheet.cssText = css;
	} else {
		style.appendChild(document.createTextNode(css));
	}
})();

QingJ © 2025

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