// ==UserScript== // @name 【淘宝】【天猫】内部优惠券 一键免费领取 购物前领一下 直接省钱30%以上 2021.8.19更新 // @namespace https://www.jbsou.cn/ // @version 8.331 // @description 一个按钮查找淘宝天猫内部优惠券,一键免费领取。直接领取优惠券购买。优惠30%以上! // @author Timi // @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 // @antifeature referral-link 【应GreasyFork代码规范要求:查询过程中 会含有推广者的pid代码 产生佣金。含有优惠券查询功能的脚本必须添加此提示!脚本使用过程中无任何强制跳转等行为,代码可查,请大家放心!在此感谢大家的理解...】 // @downloadURL none // ==/UserScript== (function () { 'use strict'; $(document).ready(function () { var host = window.location.host; var productNm = ''; var url = "http://quan.at38.cn/?cid=sINHpAY#/search?keyword="; var urll = "http://quan.at38.cn/?cid=sINHpAY&tmp=lowprice&code=sINHpAY&sp=#/sp"; var label = "获取优惠券"; 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'; } $(cssSelector).append(obtainAppendHtml(host, url, productNm, label, urll)); }); function obtainAppendHtml(host, url, productNm, label, urll) { if (host.indexOf('taobao.com') > 0) { return '
'; } else if (host.indexOf('tmall.com') > 0) { return ' '; } } })();