Last active
September 25, 2015 02:37
-
-
Save britto/849245 to your computer and use it in GitHub Desktop.
Expand Participants List
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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