// ==UserScript== // @name 【九块九包邮】【淘宝】【天猫】内部优惠券 一键免费领取 // @namespace http://www.bazhepu.com/ // @version 2.2 // @description 一键免费领取天猫淘宝优惠券,九块九包邮,直接领取优惠券购买 // @author bazhepu // @include http*://item.taobao.com/* // @include http*://detail.tmall.com/* // @require https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js // @grant none // @run-at document-end // @downloadURL https://update.greasyfork.icu/scripts/370088/%E3%80%90%E4%B9%9D%E5%9D%97%E4%B9%9D%E5%8C%85%E9%82%AE%E3%80%91%E3%80%90%E6%B7%98%E5%AE%9D%E3%80%91%E3%80%90%E5%A4%A9%E7%8C%AB%E3%80%91%E5%86%85%E9%83%A8%E4%BC%98%E6%83%A0%E5%88%B8%20%E4%B8%80%E9%94%AE%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96.user.js // @updateURL https://update.greasyfork.icu/scripts/370088/%E3%80%90%E4%B9%9D%E5%9D%97%E4%B9%9D%E5%8C%85%E9%82%AE%E3%80%91%E3%80%90%E6%B7%98%E5%AE%9D%E3%80%91%E3%80%90%E5%A4%A9%E7%8C%AB%E3%80%91%E5%86%85%E9%83%A8%E4%BC%98%E6%83%A0%E5%88%B8%20%E4%B8%80%E9%94%AE%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96.meta.js // ==/UserScript== (function () { 'use strict'; $(document).ready(function () { var host = window.location.host; var productNm = ''; var url = "http://www.bazhepu.com/?m=search&a=index&k="; var urll = "http://www.bazhepu.com/jiu/index.html"; var label = "获取优惠券"; var labell = "九块九包邮"; var cssSelector = ''; if (host.indexOf('taobao.com') > 0) { productNm = $.trim($('.tb-main-title').text()); cssSelector = '.tb-action'; } else if (host.indexOf('tmall.com') > 0) { productNm = $.trim($('.tb-detail-hd h1').text()); cssSelector = '.tb-action'; } else if (host.indexOf('jd.com') > 0) { productNm = $.trim($('.sku-name').text()); cssSelector = '#choose-btns'; url = "http://dong.jbsou.cn/?r=search?kw="; } $(cssSelector).append(obtainAppendHtml(host, url, productNm, label, urll, labell)); }); function obtainAppendHtml(host, url, productNm, label, urll, labell) { if (host.indexOf('taobao.com') > 0) { return '
'; } else if (host.indexOf('tmall.com') > 0) { return ' '; } else if (host.indexOf('jd.com') > 0) { return '' + label + ''; } } })();