Created
June 21, 2019 09:34
-
-
Save taeguk/44902d5ee492a18284ab88cbca3f95a0 to your computer and use it in GitHub Desktop.
Unwatch repositories of specific organizations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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