Created
January 27, 2011 16:13
-
-
Save trevmex/798707 to your computer and use it in GitHub Desktop.
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 Hide Unnessary Campfire Messages | |
| // @namespace http://www.trevmex.com | |
| // @description Hide everything but text messsages. | |
| // @author Trevor Lalish-Menagh | |
| // @homepage | |
| // @include http*//*.campfirenow.com/room* | |
| // ==/UserScript== | |
| (function($) { | |
| "use strict"; | |
| $('.leave_message, .enter_message, .idle_message, .kick_message, .unidle_message, .lock_message, .unlock_message, .name_change_message, .topic_change_message, .allow_guests_message, .disallow_guests_message, .conference_created_message, .conference_finished_message, .system_message, .timestamp_message').hide(); | |
| }(jQuery)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment