Skip to content

Instantly share code, notes, and snippets.

@lihuanshuai
Created January 20, 2018 03:30
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 lihuanshuai/bc10c9036e367dc28127b604f08421ee to your computer and use it in GitHub Desktop.
Save lihuanshuai/bc10c9036e367dc28127b604f08421ee to your computer and use it in GitHub Desktop.
webtorrent toggle selection
document.querySelectorAll('.torrent-details tr').forEach(function (node) {
var name = node.querySelector('.col-name').textContent;
if (name.match(/^_____padding_file_/)) {
console.log(name);
node.querySelector('.deselect-file').click();
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment