选中即复制,match对应需要执行的网站

不需要按ctrl+c,选中即复制,match对应需要执行的网站。

// ==UserScript==
// @name         选中即复制,match对应需要执行的网站
// @namespace    none
// @version      0.1
// @description  不需要按ctrl+c,选中即复制,match对应需要执行的网站。
// @author       ljy
// @match        *://blog.51cto.com/*
// @icon         https://blog.51cto.com/favicon.ico
// @grant        none
// @license      AGPL-3.0-or-later
// ==/UserScript==

(function() {
    'use strict';
    document.addEventListener("mouseup", function (e) {
        let text = window.getSelection().toString()
        navigator.clipboard.writeText(text);
    });
})();