Skip to content

Instantly share code, notes, and snippets.

@dougbeal
Created October 26, 2014 00: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 dougbeal/d7748457b22d4ce6338a to your computer and use it in GitHub Desktop.
Save dougbeal/d7748457b22d4ce6338a to your computer and use it in GitHub Desktop.
Delete unplayed episodes from feed page for overcast.fm
#developed/run from chrome CoffeeScript console
for cell in $('.usernewepisode')
cellid = cell.href.split('/').slice(-1)
delete_url = "https://overcast.fm/podcasts/delete_item/#{cellid}"
console.log delete_url
window.open delete_url, "_blank"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment