Skip to content

Instantly share code, notes, and snippets.

@DimaRGB
Last active November 15, 2018 12:55
Show Gist options
  • Save DimaRGB/94d9857b84c31c01bb369defc47977bc to your computer and use it in GitHub Desktop.
Save DimaRGB/94d9857b84c31c01bb369defc47977bc to your computer and use it in GitHub Desktop.
unwatch github organization repos
// example: unwatchOrgRepos('wkda')
// run this function on all pages https://github.com/watching
function unwatchOrgRepos(orgName) {
let orgRepoTitleNodes = document.querySelectorAll(`[title=${orgName}]`);
Array.prototype.map.call(orgRepoTitleNodes, span => {
span.parentElement.parentElement.parentElement.querySelector('.js-unsubscribe-form>[type=submit]').click()
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment