If you stream, you can add this custom CSS.
For the moment, he hides privates repositories from your list at your left on main page and aside content.
Authorthomasbnt
LicenseNo License
Categorygithub
Created
Updated
Size568 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
If you stream, you can add this custom CSS.
For the moment, he hides privates repositories from your list at your left on main page and aside content.
/* ==UserStyle==
@name Hide private informations on GitHub
@version 20210930.15.33
@namespace userstyles.world/user/thomasbnt
@description If you stream, you can add this custom CSS.
For the moment, he hides **privates repositories from your list at your left on main page** and **aside content**.
@author thomasbnt
@license No License
==/UserStyle== */
@-moz-document domain("github.com") {
.private * {
filter: blur(10px);
cursor: not-allowed;
user-select: none;
}
aside[aria-label="Explore"] {
visibility: hidden;
}
}