// ==UserScript== // @name ECU Bitbucket Improvements // @namespace raveren // @license MIT // @version 1.00 // @author raveren // @description tbd // @include https://bitbucket.org/ecu1/internal-www/pull-requests* // @run-at document-start // @downloadURL none // ==/UserScript== (function () { 'use strict'; window.addEventListener('load', function () { if (location.href === 'https://bitbucket.org/ecu1/internal-www/pull-requests/') { document.title = 'All Pull Requests'; } else { document.title = document.title.replace('ecu1 / internal-www / Pull Request ', ''); } }); })();