Skip to content

Instantly share code, notes, and snippets.

@marsen
Created July 21, 2016 09:53
Show Gist options
  • Save marsen/37893f2f1b14ab98cddb5f065f2321c6 to your computer and use it in GitHub Desktop.
Save marsen/37893f2f1b14ab98cddb5f065f2321c6 to your computer and use it in GitHub Desktop.
Tampermonkey - 讓bitbucket開PR的時候完整顯示Branche資訊
// ==UserScript==
// @name Big Dropdownlist
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Marsen
// @match https://bitbucket.org/*/*/pull-requests/new
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
$("#id_target_group").css("width","200%");
$(".aui-dropdown2 ").css("max-width","none");
})();
@marsen
Copy link
Author

marsen commented Jul 21, 2016

因為分支的名字好長~"~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment