// ==UserScript== // @name 【一键领取】 淘宝、天猫隐藏优惠券!优惠50%以上!2018.4.28加强稳定版! // @namespace http://zfh.55xu.com/ // @version 10.14 // @description 通过第三方淘宝客返利网站,查询商家设置的隐藏优惠券信息!直接领取优惠券购买。优惠50%以上! // @author 省钱购 // @include http*://item.taobao.com/* // @include http*://detail.tmall.com/* // @require https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js // @grant none // @downloadURL none // ==/UserScript== $(document).ready(function() { var url = window.location.host; var name = ''; var html = ''; if (url.indexOf('taobao.com') > 0) { name = $('.tb-main-title').text(); html = '
'; $('.tb-action').append(html); } if (url.indexOf('tmall.com') > 0) { name = $('meta[name=keywords]').attr('content'); html = ''; $('.tb-action').append(html); } });