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