Skip to content

Instantly share code, notes, and snippets.

View sergiosusa's full-sized avatar
🤘
rock on!

Sergio Susa sergiosusa

🤘
rock on!
View GitHub Profile
@sergiosusa
sergiosusa / steamgifs-autojoin.user.js
Last active December 15, 2016 08:41
User script to auto-join all giveaways from steamgifs.com.
// ==UserScript==
// @name SteamGifts Auto Join Giveaway
// @namespace http://sergiosusa.com/
// @version 0.12
// @description Auto Join for Steamgifts giveaway
// @author Sergio Susa (http://sergiosusa.com)
// @match https://www.steamgifts.com/*
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// ==/UserScript==
@sergiosusa
sergiosusa / indiegala-autojoin.user.js
Last active November 5, 2023 16:36
User script to auto-join all giveaways from indiegala.com.
// ==UserScript==
// @name AutoJoin IndieGala Giveaways
// @namespace http://sergiosusa.com
// @version 0.13
// @description Autojoin for IndieGala Giveaways!
// @author Sergio Susa (http://sergiosusa.com)
// @match https://www.indiegala.com/giveaways*
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// ==/UserScript==
@sergiosusa
sergiosusa / indigala-bundle-revealer.user.js
Last active December 8, 2019 16:54
Script to reveal a bundle from IndieGala and copy the keys on the clipboard with one click.
// ==UserScript==
// @name Indiegala Bundles' Exposer
// @namespace https://sergiosusa.com
// @version 0.4
// @description Reveal and copy each game of a indiegala's bundle.
// @author Sergio Susa (sergio@sergiosusa.com)
// @match https://www.indiegala.com/gift?gift_id=*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// @grant GM_setValue
// @grant GM_getValue
@sergiosusa
sergiosusa / games-bundle-extractor.user.js
Last active April 30, 2020 05:19
Copy the games present on the famous bundle websites to the clipboard using a link injected on the page.
// ==UserScript==
// @name Games Bundle Extrator
// @namespace http://sergiosusa.com
// @version 0.7
// @description Extract the name of the games in diferent bundles.
// @author Sergio Susa (sergio@sergiosusa.com)
// @match https://www.gogobundle.com/latest/bundles/*
// @match https://gogobundle.com/latest/bundles/*
// @match https://www.indiegala.com/*
// @match https://www.humblebundle.com/games/*
@sergiosusa
sergiosusa / steamtradematcher-scan-utilities.user.js
Last active February 9, 2022 14:26
Bring some utilities to the Steam Trade Matcher results page.
// ==UserScript==
// @name Steamtrade Matcher Scan Utilities
// @namespace http://sergiosusa.com
// @version 0.3
// @description Bring some utilities to the Steam Trade Matcher results page.
// @author Sergio Susa (sergio@sergiosusa.com)
// @match http://www.steamtradematcher.com/compare
// @match https://www.steamtradematcher.com/compare
// @grant none
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
@sergiosusa
sergiosusa / steam-own-game-bundle-checker.user.js
Created April 10, 2018 21:48
Check if you own on your configured account the games of a bundle on Humble Bundle, IndieGala, Fanatical and GoGoBundle
// ==UserScript==
// @name Own Game Bundle Checker
// @namespace http://sergiosusa.com/
// @version 0.1
// @description try to take over the world!
// @author Sergio Susa (sergio@sergiosusa.com)
// @match https://www.gogobundle.com/latest/bundles/*
// @match https://www.humblebundle.com/games/*
// @match https://www.indiegala.com/*
// @match https://www.fanatical.com/*/bundle/*
@sergiosusa
sergiosusa / humblebundle-copy-list-of-games-from-keys-page.user.js
Created April 17, 2018 22:13
Copia la lista de los juegos de la patalla de Keys del Humble Bundle.
// ==UserScript==
// @name Copy Humble Bundle Games Unreveal
// @namespace http://sergiosusa.com
// @version 0.1
// @description Copy all name of games from the HB keys list
// @author Sergio Susa (sergio@sergiosusa.com)
// @match https://www.humblebundle.com/home/keys
// @grant GM_setClipboard
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// ==/UserScript==
@sergiosusa
sergiosusa / steam-profile-showcase-organizer.user.js
Created April 20, 2018 20:51
Add an option to organize the showcases movind up and down
// ==UserScript==
// @name Steam Profile Showcase Organizer
// @namespace http://sergiosusa.com
// @version 0.1
// @description Add some features to the profile edit page on Steam.
// @author Sergio Susa (sergio@sergiosusa.com)
// @match https://steamcommunity.com/id/*/edit
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// @grant none
// ==/UserScript==
/**** Url ****/
function getCurrentUrl() {
return window.location.href;
}
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
// ==UserScript==
// @name My Indiegala Affiliate
// @namespace https://sergiosusa.com
// @version 0.1
// @description This script add my affiliate tag to all indiegala.com.
// @author Sergio Susa (https://sergiosusa.com)
// @match https://www.indiegala.com*
// @match https://www.indiegala.com/*
// @grant none
// ==/UserScript==