GitHub My Issues

Add a contextual link to issues you've contributed to on GitHub

Stan na 24-07-2025. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name          GitHub My Issues
// @description   Add a contextual link to issues you've contributed to on GitHub
// @author        chocolateboy
// @copyright     chocolateboy
// @version       2.1.0
// @namespace     https://github.com/chocolateboy/userscripts
// @license       GPL
// @include       https://github.com/
// @include       https://github.com/*
// @require       https://cdn.jsdelivr.net/npm/[email protected]/dist/cash.min.js
// @grant         GM_addStyle
// @run-at        document-start
// ==/UserScript==

// NOTE This file is generated from src/github-my-issues.user.ts and should not be edited directly.

"use strict";
(() => {
  // src/github-my-issues.user.ts
  // @license       GPL
  var ID = "my-issues-tab";
  var ISSUES_LINK = "a#issues-tab";
  var MY_ISSUES = "My Issues";
  var MY_ISSUES_LINK = `li a#${ID}`;
  var run = () => {
    $(MY_ISSUES_LINK).closest("li").remove();
    const $issuesLink = $(`li ${ISSUES_LINK}`);
    const $issues = $issuesLink.closest("li");
    if ($issues.length !== 1) {
      return;
    }
    const self = $('meta[name="user-login"]').attr("content");
    const repo = $("[data-current-repository]").data("currentRepository");
    const user = repo?.split("/")?.at(0);
    if (!(self && user && repo)) {
      return;
    }
    const myIssues = `involves:${self}`;
    const subqueries = [myIssues, "sort:updated-desc"];
    if (user === self) {
      subqueries.unshift("is:open", "archived:false");
    }
    const query = subqueries.join("+");
    const path = `/${repo}/issues`;
    const href = `${path}?q=${escape(query)}`;
    const $myIssues = $issues.clone();
    const $link = $myIssues.find(`:scope ${ISSUES_LINK}`).removeClass("selected").removeClass("deselected").attr({
      id: ID,
      role: "tab",
      href,
      "aria-current": null,
      "data-hotkey": "g I",
      "data-selected-links": null
    });
    $link.find(':scope [data-content="Issues"]').text(MY_ISSUES);
    $link.find(':scope [id="issues-repo-tab-count"]').remove();
    let q = null;
    if (location.pathname === path) {
      const params = new URLSearchParams(location.search);
      q = params.get("q");
    }
    if (q && q.trim().split(/\s+/).includes(myIssues)) {
      $link.attr("aria-selected", "true");
      $issuesLink.addClass("deselected");
    } else {
      $link.attr("aria-selected", "false");
      $issuesLink.removeClass("deselected");
    }
    $issues.after($myIssues);
  };
  GM_addStyle(`
    .deselected::after {
        background: transparent !important;
    }
`);
  $(document).on("turbo:load", run);
})();