Aliexpress Text Select

Enables the selection of text on Aliexpress product pages

  1. // ==UserScript==
  2. // @name Aliexpress Text Select
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Enables the selection of text on Aliexpress product pages
  6. // @author dNix
  7. // @match https://*.aliexpress.com/store/product/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. const pageChilds = document.getElementById('page').children;
  15. for (let i = 0; i < pageChilds.length; i++) {
  16. let el = pageChilds[i];
  17. el.onselectstart = function(e) {
  18. e.stopPropagation();
  19. };
  20. }
  21. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址