Greasy Fork 支持简体中文。

去除百度网盘分享链接推广提示

再也不要看到这句话了:“复制这段内容后打开百度网盘手机App,操作更方便哦”

// ==UserScript==
// @name         去除百度网盘分享链接推广提示
// @namespace    https://axutongxue.com/
// @version      0.1.0.4
// @description  再也不要看到这句话了:“复制这段内容后打开百度网盘手机App,操作更方便哦”
// @author       阿虚同学
// @license      MIT
// @match        *://pan.baidu.com/disk/*
// @match        *://yun.baidu.com/disk/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let t = " ", e = "text", o = "去除小尾巴失败o(╥﹏╥)o", a = "body", l = "copy";
    document.querySelector(a).addEventListener(l, function(a) {
        try {
            let l = a.target.value;
            l = l.split(t).filter((t, e) => e < 4).join(t), a.clipboardData.setData(e, l),
            a.preventDefault();
        } catch (a) {
            console.log(o);
        }
    });

})();