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    gf.qytechs.cn/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);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址