Skip to content

Instantly share code, notes, and snippets.

@veggiemonk
Created April 2, 2019 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veggiemonk/dac081d268ad7324e82074d85d1e1758 to your computer and use it in GitHub Desktop.
Save veggiemonk/dac081d268ad7324e82074d85d1e1758 to your computer and use it in GitHub Desktop.
get all the plugins in jenkins
// run this in the web console when logged in
Array.from(document.querySelectorAll('tr.plugin'))
.map(x => [x.attributes.name.textContent, x.querySelector('.excerpt').textContent])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment