Greasy Fork is available in English.
在特定網站自動執行
当前为
// ==UserScript==
// @name 自動註冊 Udemy 免費課程
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 在特定網站自動執行
// @license GPL-3.0
// @match https://www.udemy.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.log("腳本自動執行中!");
// 你要做的事情放這裡
// 獲取網頁中的所有文字
const bodyText = document.body.innerText;
// 檢查是否包含「免費」這個字
if (bodyText.includes("免費")) {
let btn = document.querySelector('[data-purpose="buy-this-course-button"]');
if (!btn) {
btn = document.querySelector('.ud-btn-brand')
}
if (btn.innerText == '立即註冊') {
btn.click();
}
} else {
// 關閉當前窗口
window.close();
}
})();