web helper

网页助手

As of 2024-04-24. See the latest version.

// ==UserScript==
// @name         web helper
// @namespace    dc
// @version      0.0.1
// @description  网页助手
// @author       dc
// @match        *://*/*
// @run-at      document-start
// @grant        none
// ==/UserScript==

(function() {
  'use strict';
  if(document.domain.includes('csdn')){
      Object.defineProperty(window, "copyPopSwitch", {
          value: false,
          writable: false,
      });
  }
})();