Skip to content

Instantly share code, notes, and snippets.

@stgarf
stgarf / unwatch-gh-org.js
Last active April 1, 2019 19:25 — forked from offirgolan/unwatch-gh-org.js
Unwatch All Org Repos
// Navigate to https://github.com/watching and then run:
// Taken from: https://stackoverflow.com/questions/11043374/how-to-unwatch-multiple-repos-easily-on-github
Array.prototype
.slice.apply(document.querySelectorAll('.Box-row'))
.forEach(el => {
const org = el.querySelector('a[href^="/YOUR_ORG"]');
if (org) el.querySelector('button').click()
});
var xpath = "//a[text()='Next']";