您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
一个按钮查找淘宝内部优惠券,领取内部优惠券。直接领取优惠券购买。优惠20%以上!
当前为
// ==UserScript== // @name 淘宝天猫内部优惠券 使用方便 2018.4.2更新 // @namespace https://www.shinaituan.com/ // @version 2.0 // @description 一个按钮查找淘宝内部优惠券,领取内部优惠券。直接领取优惠券购买。优惠20%以上! // @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 // ==/UserScript== (function() { 'use strict'; $(document).ready(function() { var str_host = window.location.host; var str_host_name = 'taobao'; var str_goods_name = ''; //$(document).attr('title'); if (str_host.indexOf('taobao.com') == -1) str_host_name = 'tmall'; if (str_host_name == 'taobao') { str_goods_name = $('.tb-main-title').text(); } else { str_goods_name = $('meta[name=keywords]').attr('content'); } str_goods_name = $.trim(str_goods_name); var btn_quan_taobao = '<a style="display: inline-block;padding: 6px 12px;margin-bottom: 0;font-size: 14px;font-weight: normal;height:26px;line-height:26px;text-align: center;white-space: nowrap;vertical-align: middle;-ms-touch-action: manipulation;touch-action: manipulation;cursor: pointer;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;background-image: none;border: 1px solid transparent;border-radius:2px;color: #fff;background-color: #DF231C;#FF0036;margin-left:10px" href="http://www.shinaituan.com/quan/cha.html?m=quan&a=search&type=2&kwd=' + encodeURI(str_goods_name) + '">获取优惠券</a>'; var btn_quan_tmall = '<div class="tb-action" style="margin-top:0"><a style="display: inline-block;padding: 6px 12px;margin-bottom: 0;font-size: 14px;font-weight: normal;height:26px;line-height:26px;width:156px;text-align: center;white-space: nowrap;vertical-align: middle;-ms-touch-action: manipulation;touch-action: manipulation;cursor: pointer;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;background-image: none;border: 1px solid transparent;border-radius:2px;color: #fff;background-color: #DF231C;#FF0036;" href="http://www.shinaituan.com/quan/cha.html?m=quan&a=search&type=2&kwd=' + encodeURI(str_goods_name) + '">领取优惠券</a></div>'; if (str_host_name == 'taobao') { $('.tb-action').append(btn_quan_taobao); } else { $('.tb-sku').append(btn_quan_tmall); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址