Skip to content

Instantly share code, notes, and snippets.

View rzfury's full-sized avatar
🎮
Gaming

RZFury rzfury

🎮
Gaming
View GitHub Profile
@rzfury
rzfury / userscript-steamdb-game-earning.js
Last active January 23, 2024 13:34
A userscript to add an earning estimation section for steamdb inside chart section
// ==UserScript==
// @name Rough earning estimation for steamdb
// @namespace http://tampermonkey.net/
// @version 2024-01-23
// @description Userscript to add an earning section for steamdb in chart section
// @author RZFury
// @match https://steamdb.info/app/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=steamdb.info
// @updateURL https://gist.githubusercontent.com/rzfury/1b5d16e04152f6e3ff13987a94fe950d/raw/9a02911546ebcc087b4cc49ab3bdec8eb03ab065/userscript-steamdb-game-earning.js
// @downloadURL https://gist.githubusercontent.com/rzfury/1b5d16e04152f6e3ff13987a94fe950d/raw/9a02911546ebcc087b4cc49ab3bdec8eb03ab065/userscript-steamdb-game-earning.js
@rzfury
rzfury / 00-stacking-healthbar-thingy.md
Last active January 10, 2024 08:15
Stacking Healthbar Thingy
@rzfury
rzfury / yt-no-adblock-popup.js
Last active October 5, 2023 13:25
Immediately remove youtube adblock popup and play the video.
// ==UserScript==
// @name Fuck Youtube Adblock
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author RZFury
// @match https://www.youtube.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @updateURL https://gist.githubusercontent.com/rzfury/5f95166cfac2d16d5df49935908d1a00/raw/98261282a19b2f74de51bf4239583b58b66025b1/yt-no-adblock-popup.js
// @downloadURL https://gist.githubusercontent.com/rzfury/5f95166cfac2d16d5df49935908d1a00/raw/98261282a19b2f74de51bf4239583b58b66025b1/yt-no-adblock-popup.js
@rzfury
rzfury / no-checkmark-twitter.js
Last active April 21, 2023 02:35
No checkmark twitter
// ==UserScript==
// @name No Checkmark Twitter
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Does not discriminate. Because it's useless for me.
// @author RZFury
// @match https://twitter.com/*
// @updateURL https://gist.githubusercontent.com/rzfury/aae3d2bb996c1fe5653a0574b6032083/raw/d6c670493453028cc7033e34ce46025a6536b843/no-checkmark-twitter.js
// @downloadURL https://gist.githubusercontent.com/rzfury/aae3d2bb996c1fe5653a0574b6032083/raw/d6c670493453028cc7033e34ce46025a6536b843/no-checkmark-twitter.js
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com
@rzfury
rzfury / stg-shoot-shape.cs
Created March 6, 2023 17:52
STG Shoot Shape Thing
private void ShootShape(Vector2 pos, float speedMul, float angle, float sides, float count)
{
for(float i = 0f; i < sides; i++)
{
float a = angle + (i * 360f / sides);
Vector2 posA = new Vector2(
pos.X + MathF.Cos(MathHelper.ToRadians(a)),
pos.Y + MathF.Sin(MathHelper.ToRadians(a)));
float b = angle + ((i + 1f) * 360f / sides);
Vector2 posB = new Vector2(
@rzfury
rzfury / hover-ytlink.js
Last active March 4, 2023 12:05
Hover Youtube Video Link - A userscript to "peek" the content of a youtube video link (often in a comment) without clicking on the link. Revealing the title and description without going to the page and increasing it's view.
@rzfury
rzfury / yt-audio-only-control.user.js
Last active January 9, 2023 09:30
Audio Only Control for Youtube
// ==UserScript==
// @name Audio Only Control
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Toggle video to be display or hidden
// @author RZFury
// @match https://www.youtube.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @updateURL https://gist.github.com/rzfury/fc68c194777b4b7d16e3db0e008a1240/raw/8a111319cf83ca014755fac7017859093cc54348/yt-audio-only-control.user.js
// @downloadURL https://gist.github.com/rzfury/fc68c194777b4b7d16e3db0e008a1240/raw/8a111319cf83ca014755fac7017859093cc54348/yt-audio-only-control.user.js
@rzfury
rzfury / no-fbclid.js
Created August 13, 2022 11:22
Prevent facebook for passing fbclid params when clicking external links. Also works with right-click(new tab, new window, etc), and Enter Key.
// ==UserScript==
// @name NO FACEBOOK's FBCLID
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Prevent facebook for passing fbclid params when clicking external links
// @author RZFury
// @match https://web.facebook.com/*
// @icon https://www.google.com/s2/favicons?domain=facebook.com
// @grant none
// ==/UserScript==
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inne