Greasy Fork is available in English.

1337x: iTorrents Download Fix

Fixes the itorrents.org link on 1337x.to, which gets blocked on Chrome due to the url being http instead of https (a simple fix, if anyone knows how to get in touch to let them know)

// ==UserScript==
// @name         1337x: iTorrents Download Fix
// @description  Fixes the itorrents.org link on 1337x.to, which gets blocked on Chrome due to the url being http instead of https (a simple fix, if anyone knows how to get in touch to let them know)
// @match        https://1337x.to/torrent/*
// @version      0.1
// @author       mica
// @namespace    greasyfork.org/users/12559
// @license      MIT
// ==/UserScript==

const elem = document.querySelector('[aria-labelledby="dropdownMenu1"]').children[0].children[0];
const url = elem.href.replace('http', 'https');
elem.setAttribute('href', url);