Bookmarklet to copy MR or issue # from current page
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.
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]); })();
Please register or sign in to comment