// ==UserScript== // @name 淘宝天猫内部优惠券 使用方便 2018.4.5更新 // @namespace https://www.49zhe.com/ // @version 3.0 // @description 一个按钮查找淘宝内部优惠券,领取内部优惠券。直接领取优惠券购买。优惠20%以上! // @author Taobao // @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== (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 = '获取优惠券'; var btn_quan_tmall = '
领取优惠券
'; if (str_host_name == 'taobao') { $('.tb-action').append(btn_quan_taobao); } else { $('.tb-sku').append(btn_quan_tmall); } }); })();