// go on you labels pages // eg https://github.com/cssnext/cssnext/labels // paste this script in your console // copy the output and now you can import it using https://github.com/popomore/github-labels ! var labels = []; [].slice.call(document.querySelectorAll(".label-link")) .forEach(function(element) { labels.push({ name: element.textContent.trim(), // using style.backgroundColor might returns "rgb(...)" color: element.getAttribute("style") .replace("background-color:", "") .replace(/color:.*/,"") .trim() // github wants hex code only without # or ; .replace(/^#/, "") .replace(/;$/, "") .trim(), }) }) console.log(JSON.stringify(labels, null, 2))