Greasy Fork is available in English.

Medium.com: Re-enable Text Selection

Stop Medium from preventing text selection & clipboard copying

  1. // ==UserScript==
  2. // @name Medium.com: Re-enable Text Selection
  3. // @namespace https://github.com/aflowofcode
  4. // @version 1.0
  5. // @description Stop Medium from preventing text selection & clipboard copying
  6. // @author A Flow of Code
  7. // @match *://*.medium.com/*
  8. // @match *://medium.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. const sp = document.querySelectorAll('[data-selectable-paragraph]');
  15. sp.forEach(p => p.removeAttribute('data-selectable-paragraph'));
  16. console.log(`Don't try to control me, Medium - text selection re-enabled on ${sp.length} paragraphs`);
  17. })();