Files
BetterYGG/contentScripts/addTorrent/accessAddTorrent.js
2025-12-23 22:56:12 +01:00

5 lines
158 B
JavaScript

var downloadButton = document.querySelector('a.butt');
if (downloadButton) {
downloadButton.onclick = function() { window.location.href = this.href; };
}