On-copy copyright remove

This script removes copyright from copied text

  1. // ==UserScript==
  2. // @name On-copy copyright remove
  3. // @name:ru Удаление копирайта при копировании
  4. // @namespace https://dasefern.com/
  5. // @version 0.2
  6. // @description This script removes copyright from copied text
  7. // @description:ru Скрипт удаляет копирайт при копировании текста
  8. // @author Kesantielu Dasefern
  9. // @include *//tengrinews.kz/*
  10. // @include *//*.sputniknews.kz/*
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. document.oncopy = null;
  17. document.ondrag = null;
  18. document.body.oncopy = null;
  19. document.body.ondrag = null;
  20. })();