Created
September 29, 2025 14:46
-
-
Save vergenzt/2bdfb97bcf254ed2a5817be9799fc955 to your computer and use it in GitHub Desktop.
Userscript: Abbreviate "Product Backlog Item" -> "PBI" in Azure DevOps
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
| // ==UserScript== | |
| // @name Abbreviate "Product Backlog Item" -> "PBI" | |
| // @match https://dev.azure.com/* | |
| // ==/UserScript== | |
| window.addEventListener("load", () => { | |
| document.title = document.title.replace("Product Backlog Item", "PBI"); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment