Greasy Fork is available in English.
创建一个自定义透明提示框,并支持显示位置、自动关闭时间、透明度、是否显示关闭按钮、背景颜色和文字颜色
当前为 
        此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/505159/1434642/%E8%87%AA%E5%AE%9A%E4%B9%89%E9%80%8F%E6%98%8E%E6%8F%90%E7%A4%BA%E6%A1%86.js
      
创建一个自定义透明提示框,并支持显示位置、自动关闭时间、透明度、是否显示关闭按钮、背景颜色和文字颜色
// 示例调用
    // 使用所有参数的调用方式
    show_message({
        message: '这是一个完全配置的提示框',  // 提示框的内容
        type: 'success',                    // 成功类型提示框
        position: 'center',                 // 屏幕正中显示
        opacity: 0.9,                       // 透明度为 0.9
        autoClose: false,                   // 不自动关闭
    });
    // 自定义显示颜色
    show_message({
        message: "这是一个自定义样式的提示框",
        type: {
            backgroundColor: '#f0e68c', // 浅黄色背景
            textColor: '#8b4513'        // 深棕色文字
        },
        position: 'bottom-left',       // 在屏幕左下角显示
        opacity: 0.8,                  // 透明度为0.9
        autoClose: 7                   // 7秒后自动关闭
    });
    // 使用简单的字符串调用方式(默认配置)
    show_message("这是一个信息提示框");
    show_message({
        message: "这是一条成功消息",
        type: 'success',
        position: 'bottom-right',
        opacity: 0.8,
        autoClose: 5 // 5秒后自动关闭
    });
    show_message({
        message: "这是一个警告提示框",
        type: 'warning',
        position: 'top-left',
        opacity: 0.8,
        autoClose: 6
    });
    show_message({
        message: "这是一条错误消息",
        type: 'error',
        position: 'top-right',
        opacity: 0.8,
        autoClose: 4 // 5秒后自动关闭
    });