Greasy Fork镜像 支持简体中文。

cx

cx复制hhh

目前為 2022-08-16 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name cx
  3. // @namespace https://haoqi.com
  4. // @version 1.0
  5. // @description cx复制hhh
  6. // @author 郑小柒~
  7. // @match http://notice.chaoxing.com/*/notice/*
  8. // @icon https://g.csdnimg.cn/static/logo/favicon32.ico
  9. // @license GPL License
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. //获取所有代码块
  16. let codes=document.querySelectorAll("code");
  17. //循环遍历所有代码块
  18. codes.forEach(c=>{
  19. //设置代码块可以编辑,从而实现复制
  20. c.contentEditable="true";
  21. });
  22. // Your code here...
  23. })();

QingJ © 2025

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