Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wo0dyn
Forked from MoOx/index.js
Last active October 17, 2016 09:57
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 wo0dyn/d915d784b1bc9b813052644aa7e988da to your computer and use it in GitHub Desktop.
Save wo0dyn/d915d784b1bc9b813052644aa7e988da to your computer and use it in GitHub Desktop.
Export GitHub labels
// go on you labels pages and paste this script in your console
var labels = [];
[].slice.call(document.querySelectorAll(".label-link"))
.forEach(function(element) {
labels.push({
name: element.textContent.trim(),
// using style.backgroundColor might returns "rgb(...)"
bgcolor: element.getAttribute("style")
.replace("background-color:", "")
.replace(/color:.*/,"")
.trim()
.replace(/;$/, ""),
color: element.getAttribute("style")
.replace(/background-color:[^;]*;/,"")
.replace(/color:/,"")
.trim()
.replace(/;$/, ""),
})
})
console.log(JSON.stringify(labels, null, 2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment