Enable text select on Aliexpress

Enables text select on Aliexpress site.

  1. // ==UserScript==
  2. // @name Enable text select on Aliexpress
  3. // @version 0.1.1
  4. // @description Enables text select on Aliexpress site.
  5. // @author Adam Syrek
  6. // @match http://aliexpress.com/*
  7. // @match http://*.aliexpress.com/*
  8. // @match https://aliexpress.com/*
  9. // @match https://*.aliexpress.com/*
  10. // @license WTFPL (http://www.wtfpl.net/about/)
  11. // @run-at document-end
  12. // @namespace https://greasyfork.org/users/132234
  13. // ==/UserScript==
  14.  
  15. document.body.onselectstart = function() { return true; };