Greasy Fork

Greasy Fork is available in English.

Redirect VSTS to DevOps

Redirect VSTS to DevOps!

目前为 2020-09-07 提交的版本,查看 最新版本

// ==UserScript==
// @name         Redirect VSTS to DevOps
// @namespace    https://001.io/
// @version      1.0
// @description  Redirect VSTS to DevOps!
// @author       Guosen Wang
// @match        https://msdata.visualstudio.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let url = location.href.replace("https://msdata.visualstudio.com", "https://dev.azure.com/msdata").replace("DefaultCollection/", "");
    window.location.replace(url);
})();