您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
一个按钮查找淘宝内部优惠券,领取内部优惠券。直接领取优惠券购买。优惠40%以上!
当前为
// ==UserScript== // @name 【内部加强稳定版】 淘宝、天猫优惠券 优惠40%以上 2018.4.17加强稳定版 // @namespace http://zfh.55xu.com/ // @version 10.1 // @description 一个按钮查找淘宝内部优惠券,领取内部优惠券。直接领取优惠券购买。优惠40%以上! // @author Taobao // @include http*://item.taobao.com/* // @include http*://detail.tmall.com/* // @include http*://item.jd.com/* // @require https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js // @grant none // ==/UserScript== (function() { 'use strict'; $(document).ready(function() { var url = window.location.host; var name = ''; var html = ''; if (url.indexOf('taobao.com') > 0) { name = $.trim($('.tb-main-title').text()); html = '<div class="tb-btn-add" style="padding-top:10px;"><a href="http://zfh.55xu.com/index.php?r=searchlist&kwd='+ encodeURI(name) + '">领取优惠券</a></div>'; $('.tb-action').append(html); } if (url.indexOf('tmall.com') > 0) { name = $.trim($('meta[name=keywords]').attr('content')); html = '<div class="tb-btn-basket tb-btn-sku" style="padding-top:10px;"><a href="http://zfh.55xu.com/index.php?r=searchlist&kwd='+ encodeURI(name) + '">领取优惠券</a></div>'; $('.tb-action').append(html); } }); })(); (function() { 'use strict'; $(document).ready(function() { var url = window.location.host; var name = ''; var html = ''; if (url.indexOf('taobao.com') > 0) { name = $.trim($('.tb-main-title').text()); html = '<div class="tb-btn-add" style="padding-top:10px;"><a href="http://zfh.55xu.com/index.php?r=downsn">下载专属APP</a></div>'; $('.tb-action').append(html); } if (url.indexOf('tmall.com') > 0) { name = $.trim($('meta[name=keywords]').attr('content')); html = '<div class="tb-btn-basket tb-btn-sku" style="padding-top:10px;"><a href="http://zfh.55xu.com/index.php?r=downsn">下载专属APP</a></div>'; $('.tb-action').append(html); } }); })();