// ==UserScript== // @name LetyShops CashBack // @namespace FIX // @version 0.0.1 // @description LetyShops CashBack for m.ru.aliexpress.com // @author raletag // @match *://m.ru.aliexpress.com/* // @grant none // @run-at document-end // @downloadURL none // ==/UserScript== (function() { 'use strict'; var header = document.querySelector('.header-main'), div = document.createElement('div'), alicashbackurl = 'https://letyshops.ru/view/13366481'; //https://letyshops.ru/api/plugin?shop_id=13366481&utm_source=userscript if (!header) return; div.style = 'left: 182px; position: absolute;'; div.innerHTML = '[Активировать кэшбэк]'; header.appendChild(div); })();