Uta-Net - Allow Copy

Allows highlighting and copying on Uta-Net.com

  1. // ==UserScript==
  2. // @name Uta-Net - Allow Copy
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Allows highlighting and copying on Uta-Net.com
  6. // @author erc2nd
  7. // @match https://www.uta-net.com/*
  8. // @icon https://ures.jp/uta-net.com/img/favicon.ico
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. var noCopyElem = document.querySelector(".moviesong");
  16. var noCopy = function (e) {
  17. var clone = noCopyElem.cloneNode(true);
  18. noCopyElem.parentNode.replaceChild(clone, noCopyElem);
  19. };
  20. noCopyElem.addEventListener('mousemove', noCopy);
  21.  
  22. })();

QingJ © 2025

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