Skip to content

Instantly share code, notes, and snippets.

View Kurover's full-sized avatar
💭
🍃

Zanster Kurover

💭
🍃
View GitHub Profile
@Kurover
Kurover / youtube-mod.scss
Last active July 30, 2025 00:53
CSS modification for YouTube. Mainly for dark mode but light is compatible if you edit it
/*
* My YouTube UI mod
* Sharpen edges, squarify avatar, and clarify comment section. It also remove a few thing but you can add it back.
*/
/*
* # Updates
* 24-05-25 - Public Release
* 27-05-25 - Paid comment offset fix, undo recent YT changes on comments padding
* 30-07-25 - Adjust description's "more" text position and opacity
@Kurover
Kurover / ShareX-ResetCounter.ahk
Last active May 17, 2025 14:19
AHK v2. Great for timelapse junky out there. If ShareX is running. you will have to make the config "refresh" like opening the main window. Probably should automate this too but ehh another day.
#Requires AutoHotkey v2
;===============
;=== ShareX auto capture/increment file auto reset
;=== Change these value if you tinker with any of it
varShareXConfig := A_MyDocuments "/ShareX/ApplicationConfig.json" ; Change this to full path if you're using custom path (ex: "C:/yourfolder/myShareX/ApplicationConfig.json", deleting A_MyDocuments)
varProcessName := "ShareX.exe" ; Change if you uh.. change the process name?????
;===============
;===============
@Kurover
Kurover / reddit-mod.css
Last active April 29, 2025 08:17
old.reddit.com only. Use with RES.
/* OP comment(s) on top
* MIGHT BREAK COMMENT LAYOUT
* If you want to pin comment that has OP's interaction, delete "> .entry" inside :has. Make sure you leave 1 whitespace
*/
.commentarea > .sitetable {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
& > .thing:has( > .entry .submitter) {
background-color: #fffcd7 !important;
@Kurover
Kurover / twitter-verified-comment-hide.css
Last active May 17, 2025 14:08
Yeet them to the shadow land. Hover to show their abomination. Will break scrolling up to the OP after you scrolled down with a lot of verified comments due to how twitter handle their layout via *gulp* script.
[aria-label="Timeline: Conversation"] > div > div:not(:first-child):has( [aria-label="Verified account"]) {
background: #ff00007a;
max-height: 1.7rem;
overflow: hidden; /* Hide the content, visually */
& img {display: none;} /* Might as well not draw their stupid images/gif/video */
& > div > div > article > div > div > div:first-child {height: 4px}; /* Make their post more compact */
&:is(:hover, :focus-within) {
z-index: 9999; /* Make sure content doesn't overlap with the next one. Twitter use absolute position for their message, very epic */
background: unset;
overflow: visible;
@Kurover
Kurover / freshrss-mod.css
Last active April 29, 2025 05:57
FreshRSS view mods, focused for media viewing. Transform reader mode to image only album looks.
/*Thumbnail hacks*/
.flux .item.thumbnail.small {
height: 100%;
}
.flux .item.thumbnail {
height: auto;
min-height: 50%;
max-height: 128px;
}
@Kurover
Kurover / discord-mod.css
Last active September 27, 2025 12:27
CSS modification for Discord
/*
* My Discord UI mod
* Some modification is against latest Discord UI on April.
*/
/*
* # Updates
* 07-05-25 - Fix DM icon with the new structure/tag [aria-owns="guild-list-unread-dms"]. Previously [aria-label="Direct Messages"]
* 10-09-25 - Fix recent Discord update between message window and chat box
* 10-27-25 - Fix recent Discord update which related to previous one, a bunch of things removed on their end lol. Also adjust user UI on the bottom left