Mojira.dev Redirect

Redirect Minecraft bug tracker issues to mojira.dev after 3s unless aborted by user click

当前为 2025-09-05 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        Mojira.dev Redirect
// @namespace   tschipcraft
// @description Redirect Minecraft bug tracker issues to mojira.dev after 3s unless aborted by user click
// @icon        https://raw.githubusercontent.com/misode/mojira.dev/7ebd18d3f7b0de841376ef2f9120dd30c54eda63/static/favicon.png
// @author      Tschipcraft
// @version     1.0
// @license     MIT
// @match       https://bugs.mojang.com/browse/*/issues/*
// @grant       none
// ==/UserScript==

(function () {
    'use strict';

    // Extract the issue ID from the URL (last path segment)
    const parts = window.location.pathname.split('/');
    const issueId = parts[parts.length - 1];
    if (!issueId) return;

    let countdown = 3;
    let aborted = false;
    let intervalId;

    // Create notice
    const notice = document.createElement('div');
    notice.style.position = 'fixed';
    notice.style.top = '12px';
    notice.style.left = '50%';
    notice.style.transform = 'translate(-50%, 0)';
    notice.style.padding = '10px 15px';
    notice.style.background = 'rgba(0, 0, 0, 0.8)';
    notice.style.color = '#fff';
    notice.style.fontSize = '14px';
    notice.style.fontFamily = 'sans-serif';
    notice.style.borderRadius = '8px';
    notice.style.zIndex = '999999';
    notice.textContent = `I will redirect you to mojira.dev after ${countdown} seconds. Click anywhere on the screen to abort.`;
    document.body.appendChild(notice);

    // Abort on any click
    const abortHandler = () => {
        aborted = true;
        clearInterval(intervalId);
        notice.textContent = "Redirection aborted.";
        setTimeout(() => notice.remove(), 2000);
        window.removeEventListener('click', abortHandler);
    };
    window.addEventListener('click', abortHandler);

    // Countdown logic
    intervalId = setInterval(() => {
        countdown--;
        if (countdown > 0) {
            notice.textContent = `I will redirect you to mojira.dev after ${countdown} seconds. Click anywhere on the screen to abort.`;
        } else {
            clearInterval(intervalId);
            if (!aborted) {
                window.location.href = `https://mojira.dev/${issueId}`;
            }
        }
    }, 1000);
})();