Greasy Fork 支持简体中文。

山东省教师教育网|继续教育培训|国家中小学智慧教育平台|各种网课|

有偿带学,各种网课,详情请加图片中微信

// ==UserScript==
// @name         山东省教师教育网|继续教育培训|国家中小学智慧教育平台|各种网课|
// @namespace    http://www.qlteacher.com
// @version      1.2
// @description  有偿带学,各种网课,详情请加图片中微信
// @author       小鲨鱼
// @match        *://www.qlteacher.com/*
// @match        *://xue-test.ykt.eduyun.cn/*
// @grant        none
// ==/UserScript==

(function() {
    // 创建一个容器来显示图片和文字
    const container = document.createElement('div');
    container.style.position = 'fixed';
    container.style.top = '50%'; // 垂直居中
    container.style.left = '50%'; // 水平居中
    container.style.transform = 'translate(-50%, -50%)'; // 居中偏移
    container.style.backgroundColor = 'white';
    container.style.padding = '20px';
    container.style.border = '1px solid #ccc';
    container.style.zIndex = '9999';

    // 添加图片
    const image = document.createElement('img');
    image.src = 'https://i.postimg.cc/FKSwbZsW/88888888.jpg'; // 替换为您的图片 URL
    image.style.width = '300px';
    container.appendChild(image);

    // 添加文字
    const text = document.createElement('p');
    text.textContent = '有偿带学,各种网课,详情请加图片中微信'; // 替换为您的文字内容
    text.style.fontSize = '16px';
    container.appendChild(text);

    // 添加关闭按钮
    const closeButton = document.createElement('button');
    closeButton.textContent = '关闭';
    closeButton.addEventListener('click', () => {
        container.style.display = 'none';
    });
    container.appendChild(closeButton);

    // 将容器添加到页面
    document.body.appendChild(container);
})();