Skip to content

Instantly share code, notes, and snippets.

View edtz's full-sized avatar
⚛️
I know how to react

edtz

⚛️
I know how to react
View GitHub Profile
@edtz
edtz / gist:056b04167ddd4f773651e43da6302586
Created September 3, 2018 19:43
torrentz2 download bookmarklet
javascript:(function(){const block = document.querySelector("div.trackers");const hash = block.querySelector("h2").textContent.split(" ").reverse()[0];const trackers = Array.from(document.querySelectorAll("div.trackers dt")).map(el => el.textContent);location.href = `magnet:?xt=urn:btih:${hash}${trackers.map(tr => "&tr=" + tr).join()}`;})()