您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Picking email leaves you without a link on the upload page. You have to actually check your email.
/* eslint-disable */ // ==UserScript== // @name WeTransfer Default to link // @description Picking email leaves you without a link on the upload page. You have to actually check your email. // @version 0.1.2 // @namespace https://gf.qytechs.cn/users/40601 // @homepage https://gf.qytechs.cn/scripts/392431 // @supportURL https://gf.qytechs.cn/scripts/392431/feedback // @author Leeroy // @icon https://cdn.browsercam.com/com.wetransfer.app.live-logo.png // @match *://wetransfer.com/* // @match *://we.tl/* // @license GPL-3.0 // ==/UserScript== /* eslint-enable */ 'use strict'; function waitForSelector(selector) { return new Promise((resolve, _reject) => { const interval = setInterval(() => { const el = document.querySelector(selector); if (el instanceof HTMLElement) { clearInterval(interval); resolve(el); } }, 100); }); } const dots = '.transfer__toggle-options'; const link = '#transfer__type-link'; waitForSelector(dots) .then(dotsElement => { dotsElement.click(); document.querySelector(link).click(); dotsElement.click(); }) .catch(console.error);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址