// ==UserScript== // @name 淘宝优惠券 // @namespace https://imewchen.com/ // @version 0.1.1 // @description 从券多多查找淘宝优惠券。脚本非官方出品。 // @author MewChen // @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 https://update.greasyfork.icu/scripts/32565/%E6%B7%98%E5%AE%9D%E4%BC%98%E6%83%A0%E5%88%B8.user.js // @updateURL https://update.greasyfork.icu/scripts/32565/%E6%B7%98%E5%AE%9D%E4%BC%98%E6%83%A0%E5%88%B8.meta.js // ==/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); } }); })();