Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save vergenzt/2bdfb97bcf254ed2a5817be9799fc955 to your computer and use it in GitHub Desktop.

Select an option

Save vergenzt/2bdfb97bcf254ed2a5817be9799fc955 to your computer and use it in GitHub Desktop.
Userscript: Abbreviate "Product Backlog Item" -> "PBI" in Azure DevOps
// ==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