Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save trevmex/798707 to your computer and use it in GitHub Desktop.

Select an option

Save trevmex/798707 to your computer and use it in GitHub Desktop.
// ==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