Advertisement
rAthus

f*ck Aliexpress bundles!

Aug 8th, 2024
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         f*ck Aliexpress bundles!
  3. // @namespace    http://tampermonkey.net/
  4. // @version      2024-08-08
  5. // @description  f*ck Aliexpress bundles!
  6. // @author       rAthus
  7. // @match        https://www.aliexpress.com/gcp/*
  8. // @icon         https://www.google.com/s2/favicons?sz=64&domain=aliexpress.com
  9. // @grant        none
  10. // @require      https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js
  11. // ==/UserScript==
  12.  
  13. (function() {
  14.     'use strict';
  15.  
  16.     jQuery('.productContainer[id]').each(function(){
  17.         var id = jQuery(this).attr('id');
  18.         jQuery(this).append('<center><a href="/item/'+id+'.html" onclick="javascript:location.href=this.href;this.innerHTML=&quot;here we go!&quot;;return false;">f*ck bundles!</a></center>');
  19.     });
  20. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement