Skip to content

Instantly share code, notes, and snippets.

@techygrrrl
Last active July 24, 2022 22:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techygrrrl/84d31d11da92acdb896fb726847d4441 to your computer and use it in GitHub Desktop.
Save techygrrrl/84d31d11da92acdb896fb726847d4441 to your computer and use it in GitHub Desktop.
Expands the queue on the Fyrewire queue, a tool used for setting up queues for gaming streamers for 1v1 matches. Install a user script runner like ViolentMonkey, TamperMonkey or GreaseMonkey and Click "Raw" to install.
// ==UserScript==
// @name Fyre queue expander
// @namespace https://techygrrrl.stream
// @version 0.1
// @description Because we should all stop using accordions, shows all list items in the accordion on the Fyre queue.
// @author techygrrrl
// @match https://thefyrewire.com/kappa/queues/techygrrrl
// @icon https://techygrrrl.stream/favicon.ico
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('[data-parent="#accordionQueue"]').addClass('show')
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment