Created
March 23, 2014 03:09
-
-
Save gsavovski/9718065 to your computer and use it in GitHub Desktop.
Hide cassettes in github diffs (tampermonkey script for chrome)
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 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