// ==UserScript== // @name JD 全品类优惠券 京东内部优惠券 优惠30%以上 2019.10.22加速版 // @namespace https://www.49zhe.com/ // @version 6.22 // @description 通过淘宝客返利网站,查询商家设置的隐藏优惠券,上万款内部优惠券等你免费领取、让您享受更多优惠! // @author Taobao // @include http*://item.jd.com/* // @require https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(document).ready(function() { var url = window.location.host; var name = ''; var html = ''; if (url.indexOf('jd.com') > 0) { var name = $.trim($('.sku-name').text()); var html = '领取优惠券'; $('#choose-btns').append(html); } }); })();