Skip to content

Instantly share code, notes, and snippets.

@chetan
Created January 31, 2014 17:42
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 chetan/8738402 to your computer and use it in GitHub Desktop.
Save chetan/8738402 to your computer and use it in GitHub Desktop.
github repo unwatch
// unwatch all repos containg "foobar"
$("li.subscription-row").each(function(i, row){ if ($(row).find("a.repo-name").text().indexOf("foobar") >= 0) { $(row).find("form.js-unsubscribe-form button").click() } });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment