Last active
March 13, 2023 18:22
-
-
Save JoachimR/fdb4d1b3586b5ff59227402d4575ddd9 to your computer and use it in GitHub Desktop.
javascript bookmarklet to put a merge request message into clipboard from https://gitlab.com/.../merge_requests/<number>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (() => { navigator.clipboard.writeText(":merge-request: *" + document.querySelector('.page-title').textContent.trim() + "*" + "\n" + document.URL ) })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment