打开docker镜像描述页时自动跳转到正确的页
// ==UserScript==
// @name Docker正确描述页修正
// @namespace https://github.com/nygula
// @version 1.0
// @description 打开docker镜像描述页时自动跳转到正确的页
// @author nygula
// @match https://registry.hub.docker.com/u/*
// @grant GM_openInTab
// ==/UserScript==
(function() {
'use strict';
let link = location.href;
link = link.replace('registry.hub.docker.com/u/','hub.docker.com/r/');
GM_openInTab(link, { active: true });
})();