Created
November 2, 2014 01:05
-
-
Save airdrummingfool/d22ff9e2b138c91b8a65 to your computer and use it in GitHub Desktop.
Hide Bitbucket's .pbxproj diff in pull requests
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 Bitbucket .pbxproj diff in pull requests | |
// @namespace com.tgoode.userscript.hidepbxprojdiff | |
// @description Hides the .pbxproj diff on Bitbucket Pull Requests | |
// @include https://bitbucket.org/*/*/pull-request/* | |
// @version 1 | |
// @grant GM_addStyle | |
// ==/UserScript== | |
GM_addStyle(' \ | |
section[data-filename*=".pbxproj"] { \ | |
display:none; \ | |
} \ | |
'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment