您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Udemy link fixed
// ==UserScript== // @name Udemy Affiliation link removal // @namespace [email protected] // @description Udemy link fixed // @include https://www.udemy.com/*/?couponCode=* // @version 1 // @grant none // ==/UserScript== /* jshint esversion: 6 */ let currentURL = window.location.href; console.log("Udemy link detected: ", currentURL); if (currentURL.substring(currentURL.indexOf("couponCode=")).includes("?")) { let replaceURL = currentURL.match(/(.+couponCode=[^?]+)(?:\?)/)[1]; console.log("? detected, replaced by: ", replaceURL); window.location.replace(replaceURL); }