Skip to content

Instantly share code, notes, and snippets.

@britto
Last active September 25, 2015 02:37
Show Gist options
  • Save britto/849245 to your computer and use it in GitHub Desktop.
Save britto/849245 to your computer and use it in GitHub Desktop.
Expand Participants List
// ==UserScript==
// @name Expand Participants List
// @description Removes scrolling from Campfire's participants list
// @match https://*.campfirenow.com/room/*
// @author Britto
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle("\
div#Sidebar ul.participant-list { height: auto; } \
div#Sidebar ul.participant-list li.user { float: left; width: 50%; } \
");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment