mirror of
https://github.com/NohamR/BetterYGG.git
synced 2026-01-10 08:18:19 +00:00
5 lines
158 B
JavaScript
5 lines
158 B
JavaScript
var downloadButton = document.querySelector('a.butt');
|
|
if (downloadButton) {
|
|
downloadButton.onclick = function() { window.location.href = this.href; };
|
|
}
|