Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save airdrummingfool/d22ff9e2b138c91b8a65 to your computer and use it in GitHub Desktop.
Save airdrummingfool/d22ff9e2b138c91b8a65 to your computer and use it in GitHub Desktop.
Hide Bitbucket's .pbxproj diff in pull requests
// ==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