CSDN COPY

copy csdn text for free

  1. // ==UserScript==
  2. // @name CSDN COPY
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description copy csdn text for free
  6. // @author You
  7. // @match https://www.csdn.net/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=csdn.net
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. if(document.designMode){
  16. document.designMode='on'
  17. }
  18.  
  19.  
  20. })();