Hides GitHub Suggested Repository Name
目前為
// ==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));
}
})();