Greasy Fork

ECU Bitbucket Improvements

tbd

目前为 2023-01-26 提交的版本。查看 最新版本

// ==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
// ==/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 ', '');
        }
    });
})();