Skip to content

Instantly share code, notes, and snippets.

@gsavovski
Created March 23, 2014 03:09
Show Gist options
  • Save gsavovski/9718065 to your computer and use it in GitHub Desktop.
Save gsavovski/9718065 to your computer and use it in GitHub Desktop.
Hide cassettes in github diffs (tampermonkey script for chrome)
// ==UserScript==
// @name Hide cassettes in github diffs
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description Hide cassettes in github diffs
// @match https://github.com/*
// @copyright 2014+, Goran Savovski
// ==/UserScript==
// @require http://code.jquery.com/jquery-latest.js
var $ = unsafeWindow.jQuery;
$('div[data-path^="spec/cassettes"]').next().hide();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment