Greasy Fork is available in English.
一个按钮查找淘宝内部优惠券,领取内部优惠券。直接领取优惠券购买。优惠20%以上!
当前为
// ==UserScript==
// @name TAOBAO COUPON 【内部加强版】 淘宝天猫内部优惠券 优惠20%以上 使用方便 2018.4.9更新
// @namespace https://www.49zhe.com/
// @version 4.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
// ==/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().substring(0, 20));
html = '<div class="tb-btn-add" style="padding-top:10px;"><a href="http://www.49zhe.com/quan/cha.html?m=quan&a=sok&type=2&kwd=' + encodeURI(name) + '">领取优惠券</a></div>';
} else {
name = $.trim($('meta[name=keywords]').attr('content').substring(0, 20));
html = '<div class="tb-btn-basket tb-btn-sku" style="padding-top:10px;"><a href="http://www.49zhe.com/quan/cha.html?m=quan&a=sok&type=2&kwd=' + encodeURI(name) + '">领取优惠券</a></div>';
}
$('.tb-action').append(html);
});
})();