Add URL to copied content on PsyPost

Add the URL of the current page to the end of the copied content on PsyPost website

// ==UserScript==
// @name         Add URL to copied content on PsyPost
// @version      1
// @description  Add the URL of the current page to the end of the copied content on PsyPost website
// @match        https://www.psypost.org/*
// @grant        none
// @namespace https://gf.qytechs.cn/users/1070025
// ==/UserScript==

document.addEventListener("copy", function(e) {
  const selection = window.getSelection().toString();
  const url = document.location.href;
  const copiedString = `${selection} (Source: ${url})`;
  e.clipboardData.setData("text/plain", copiedString);
  e.preventDefault();
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址