Skip to content

Instantly share code, notes, and snippets.

@taeguk
Created June 21, 2019 09:34
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 taeguk/44902d5ee492a18284ab88cbca3f95a0 to your computer and use it in GitHub Desktop.
Save taeguk/44902d5ee492a18284ab88cbca3f95a0 to your computer and use it in GitHub Desktop.
Unwatch repositories of specific organizations
// run js codes in https://github.com/watching
Array.prototype.slice.call(
document.querySelectorAll('.clearfix')
).map(function (row) {
if (row.querySelector('div:first-child').innerText.indexOf('ORGANIZATION_NAME/') >= 0) {
row.querySelector('button').click()
}
})
location.reload()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment