Skip to content

Instantly share code, notes, and snippets.

View psenough's full-sized avatar

Filipe Cruz psenough

View GitHub Profile
@psenough
psenough / csdb_prod_extra_links.js
Last active April 5, 2024 23:20
csdb prod extra links
@psenough
psenough / demozoo_compo_slideshow.js
Last active January 8, 2024 11:08
adds a slideshow interface for each compo listed
// ==UserScript==
// @name Demozoo Compo Slideshow
// @namespace http://tampermonkey.net/
// @version 0.3.2
// @description show a slidehow of the better screenshots rather than thumbnails
// @author ps
// @match https://demozoo.org/parties/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=demozoo.org
// @grant none
// ==/UserScript==
@psenough
psenough / demozoo_pouet_groups_userscript.js
Last active March 6, 2024 15:59
Demozoo pouet groups addon
// ==UserScript==
// @name Demozoo pouet groups addon
// @namespace http://tampermonkey.net/
// @version 0.34
// @description taking over the world by facilitating to add missing pouet productions to demozoo
// @author You
// @match https://demozoo.org/pouet/groups/*
// @match https://demozoo.org/productions/new/?*
// @icon https://www.google.com/s2/favicons?sz=64&domain=demozoo.org
// @grant GM_xmlhttpRequest
@psenough
psenough / csdb_screenshots.js
Last active April 5, 2024 23:19
csdb screenshots
// ==UserScript==
// @name CSDB Screenshots
// @namespace http://tampermonkey.net/
// @version 0.2
// @description try to take over the world!
// @author You
// @match https://csdb.dk/event/*
// @match https://csdb.dk/group/*
// @match https://demozoo.org/productions/new/?*
// @icon https://www.google.com/s2/favicons?sz=64&domain=csdb.dk
@psenough
psenough / fix_warlight_userscript.js
Last active June 25, 2023 01:03
Fix some usability things on warzone
// ==UserScript==
// @name Fix Warlight
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to make warzone a little more playable
// @author ps
// @match https://www.warzone.com/MultiPlayer?GameID=*
// @icon https://www.google.com/s2/favicons?sz=64&domain=warzone.com
// @grant none
// ==/UserScript==
@psenough
psenough / Demozoo_pouet_groups_addon.js
Last active April 18, 2023 00:22
Demozoo pouet groups addon
// ==UserScript==
// @name Demozoo pouet groups addon
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://demozoo.org/pouet/groups/*
// @match https://demozoo.org/productions/new/?*
// @icon https://www.google.com/s2/favicons?sz=64&domain=demozoo.org
// @grant none
@psenough
psenough / demozoo_scene_org_search_userscript.js
Last active March 25, 2023 22:41
Demozoo scene.org search userscript
// ==UserScript==
// @name Demozoo scene.org search
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://demozoo.org/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=demozoo.org
// @grant none
// ==/UserScript==
var res = document.getElementsByClassName("result__content")
for (let element of res) console.log(element.children[0].innerHTML + "," + element.children[0].href)
@psenough
psenough / pouet_screenshots.js
Last active June 29, 2023 16:49
Tampermonkey userscript to show the screenshots on mouseenter of prod links on toplists.php and party.php
// ==UserScript==
// @name Pouet Screenshots
// @namespace http://tampermonkey.net/
// @version 0.3
// @description try to take over the world!
// @author You
// @match https://pouet.net/toplist.php*
// @match https://www.pouet.net/toplist.php*
// @match https://pouet.net/party.php*
// @match https://www.pouet.net/party.php*
@psenough
psenough / demozoo_original_screenshots.js
Created December 1, 2022 23:36
Tampermonkey userscript to display the original (bigger) screenshots on demozoo parties while mouseover entries
// ==UserScript==
// @name Demozoo Original Screenshots
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://demozoo.org/parties/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=demozoo.org
// @grant none
// ==/UserScript==