Copy text from fanfiction.net

Allow copy from fanfiction.net

  1. // ==UserScript==
  2. // @name Copy text from fanfiction.net
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Allow copy from fanfiction.net
  6. // @author scuzz
  7. // @match https://www.fanfiction.net/s*
  8. // @grant none
  9. // ==/UserScript==
  10. (function () {
  11. //I dunno what event puts the user-select on, and I'm too lazy to find it.
  12. setTimeout(function(){
  13. document.getElementById('storytextp').style['user-select'] = "auto";
  14. console.log("probably removed copy-protect?");
  15. }, 500);
  16. }) ();

QingJ © 2025

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