Skip to content
Snippets Groups Projects

Bookmarklet to copy MR or issue # from current page

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Clayton Craft

    A simple bookmarklet that will copy (to clipboard) the MR or issue # from the current page that's useful for pasting into mrhlpr, for making references, etc.

    Edited
    copy_gitlab_num.bookmark 160 B
    javascript:(function() { const match = window.location.href.match(/\/(merge_requests|issues)\/(\d+)/); if (match) navigator.clipboard.writeText(match[2]); })();
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment