Greasy Fork is available in English.

全网VIP视频免费破解去广告,一键领取淘宝、天猫、京东、唯品会、拼多多、抖音隐藏优惠券!全网查券!【免费领取京东淘宝超级红包、外卖红包、公交地铁红包】

1、一键破解[B站|优酷|腾讯|乐视|爱奇艺|芒果|音悦台]等VIP视频;2、查询商家设置的隐藏优惠券,省钱开心购物,直接领取优惠券购买;3、接口不好用了请反馈给我记录更新(QQ群:668600818)。

// ==UserScript==
// @name         全网VIP视频免费破解去广告,一键领取淘宝、天猫、京东、唯品会、拼多多、抖音隐藏优惠券!全网查券!【免费领取京东淘宝超级红包、外卖红包、公交地铁红包】
// @namespace    http://lctnq.yhzu.cn
// @version      1.5.5
// @description  1、一键破解[B站|优酷|腾讯|乐视|爱奇艺|芒果|音悦台]等VIP视频;2、查询商家设置的隐藏优惠券,省钱开心购物,直接领取优惠券购买;3、接口不好用了请反馈给我记录更新(QQ群:668600818)。
// @author       赤练丶风
// @match        *://s.taobao.com/*
// @match        *://ai.taobao.com/search/*
// @match        *://list.tmall.com/*
// @match        *://item.taobao.com/*
// @match        *://detail.tmall.com/*
// @match        *://detail.tmall.hk/*
// @match        *://chaoshi.detail.tmall.com/*
// @match        *://detail.liangxinyao.com/*
// @match        *://*.jd.com/*
// @match        *://*.jd.hk/*
// @match        *://*.yiyaojd.com/*
// @match        *://*.jd.com/*
// @match        *://*.vip.com/*
// @match        *://*.vipglobal.hk/*
// @exclude      *://login.taobao.com/*
// @exclude      *://login.tmall.com/*
// @exclude      *://uland.taobao.com/*
// @exclude      *://pages.tmall.com/*
// @exclude      *://wq.jd.com/*
// @match   	 *://*.iqiyi.com/*
// @match   	 *://*.youku.com/*
// @match   	 *://v.qq.com/*
// @match   	 *://*.bilibili.com/*
// @match   	 *://*.tudou.com/*
// @match   	 *://film.sohu.com/*
// @match   	 *://*.mgtv.com/*
// @match   	 *://*.acfun.cn/v/*
// @match  	  	 *://*.56.com/*
// @match   	 *://*.pptv.com/*
// @match   	 *://*.le.com/*
// @match   	 *://*.letv.com/*
// @match   	 *://tv.sohu.com/*
// @match   	 *://vip.1905.com/play/*
// @match   	 *://v.yinyuetai.com/video/*
// @match   	 *://v.yinyuetai.com/playlist/*
// @match  	 	 *://*.fun.tv/vplay/*
// @match  		 *://*.wasu.cn/Play/show/*
// @require      https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js
// @antifeature  referral-link 【应GreasyFork代码规范要求:含有优惠券查询功能的脚本必须添加此提示!脚本使用过程中无任何强制跳转等行为,代码可查,请大家放心!在此感谢大家的理解...】
// @grant        GM_openInTab
// @grant        GM_registerMenuCommand
// @license      AGPL
// @require      https://greasyfork.org/scripts/456558-myconstant/code/myConstant.js
// ==/UserScript==
(function() {
    GM_registerMenuCommand("首选全网查券地址",
                           function() {
        window.open("https://2kma.cn/TqmwG", "_blank");
    });
    GM_registerMenuCommand("备用淘宝查券地址",
                           function() {
        window.open("http://lctnq.yhzu.cn", "_blank");
    });
    GM_registerMenuCommand("最新活动地址(首选失效地址更新页)",
                           function() {
        window.open("https://docs.qq.com/doc/DSUltSVBSdFp4d1NT", "_blank");
    });
})();
(function () {
    'use strict';
    $(document).ready(function () {
        var host = window.location.host;
        var pid = '';
        var pname = '';
        var cssSelector = '';
        var coupon = '';
        var search = '';
        pid = location.href;
        coupon = TBCoupon;
        search = TBSearch;
        if (host.indexOf('taobao.com') > 0) {
            pid = pid.split("id=")[1];
            pid = pid.split("&")[0];
            pname = $.trim($('.tb-main-title').text());
            cssSelector = '.tb-action';
        } else if (host == 'chaoshi.detail.tmall.com') {
            pid = pid.split("id=")[1];
            pid = pid.split("&")[0];
            pname = $.trim($('.tb-detail-hd h1').text());
            cssSelector = '.tb-action';
        } else if (host.indexOf('tmall.com') > 0 || host == 'detail.liangxinyao.com') {
            pid = pid.split("id=")[1];
            pid = pid.split("&")[0];
            pname = $.trim($('.tb-detail-hd h1').text());
            cssSelector = '.tb-action';
        } else if (host.indexOf('jd.com') > 0) {
            coupon = JDCoupon;
            search = JDSearch;
            pid = window.location.pathname;
            pid = pid.split("/")[1];
            pid = pid.split(".html")[0];
            pname = $.trim($('.sku-name').text());
            cssSelector = '#choose-btns';
        } else if (host.indexOf('vip.com') > 0) {
            function addGlobalStyle(css) {
                var head, style;
                head = document.getElementsByTagName('head')[0];
                if (!head) { return; }
                style = document.createElement('style');
                style.type = 'text/css';
                style.innerHTML = css;
                head.appendChild(style);
            }
            addGlobalStyle(`
.comparePricess {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    color: #fff;
    text-align: center;
}`);
            coupon = VipCoupon;
            search = VipSearch;
            Clabel = Viplabel;
            pid = window.location.pathname;
            pid = pid.split("-")[2];
            pid = pid.split(".html")[0];
            cssSelector = 'div#J_detail_buy';
            setTimeout(() => {
                pname = document.getElementsByTagName('title')[0].innerHTML;
                Rlabel = VipPacket;
                $(cssSelector).after(obtainAppendHtml(host, coupon,pid,search, pname,Viptitle,Clabel, NewAct, Rlabel, AllSearch));
            },
                       2000);
        } else {
            const YoukuIcon = '<svg width="1.2em" height="1.2em" viewbox="0 0 72 72"><defs><circle id="youkuC1" r="5.5" style="stroke:none;;fill:#0B9BFF;"></circle><path id="youkuArow" d="m0,10 a5,5 0,0,1 0,-10 h20 a5,5 0,0,1 0,10z" style="fill:#FF4242;"></path></defs><circle cx="36" cy="36" r="30.5" style="stroke:#30B4FF;stroke-width:11;fill:none;"></circle><use x="10.5" y="19" xlink:href="#youkuC1"/><use x="61.5" y="53" xlink:href="#youkuC1"/><use x="39" y="1" transform="rotate(30)" xlink:href="#youkuArow"/><use x="-1" y="52" transform="rotate(-35)" xlink:href="#youkuArow"/></svg>';
            const VQQIcon = '<svg height="1.2em" width="1.2em" viewbox="0 0 185 170"><defs><path id="vQQ" d="M7 20Q14 -10 55 7Q100 23 145 60Q170 80 145 102Q108 138 47 165Q15 175 4 146Q-5 80 7 20"></path></defs><use style="fill:#44B9FD;" transform="translate(27,0)" xlink:href="#vQQ"></use><use style="fill:#FF9F01;" transform="translate(0,18),scale(0.8,0.75)" xlink:href="#vQQ"></use><use style="fill:#97E61B;" transform="translate(23,18),scale(0.80.75)" xlink:href="#vQQ"></use><use style="fill:#fff;" transform="translate(50,45),scale(0.4)" xlink:href="#vQQ"></use></svg>';
            const IQiyiIcon = '<img src="https://www.iqiyipic.com/common/fix/128-128-logo.png" width="16" height="16" />';
            const BiliIcon = '<img src="https://static.hdslb.com/images/favicon.ico" width="16" height="16"/>';
            const MgIcon = '<img src="https://www.mgtv.com/favicon.ico" width="16" height="16"/>';
            function addGlobalStyle(css) {
                var head, style;
                head = document.getElementsByTagName('head')[0];
                if (!head) { return; }
                style = document.createElement('style');
                style.type = 'text/css';
                style.innerHTML = css;
                head.appendChild(style);
            }
            addGlobalStyle(`
#Ful{position:fixed;top:5em;left:0;padding:0;z-index:999999;}
#Ful svg{float:right;}
#Ful img{float:right;}
.F1{position:relative;padding-right:.5em;width:2em;opacity:0.8;cursor:pointer;}
.F1:hover{opacity:2;}
.F1 span{margin:0;padding:1em .3em;background-color:#00C8FF;color:white;display:block;}
.F2,.F3{position:absolute;top:0;left:1.8em;display:none;margin:0;padding:0;}
.F2 li,.F3 li{width:10em;margin:0;padding:.15em .5em;background:#00FFFF;cursor:pointer;}
.F2 li:hover,.F3 li:hover{color:red!important;background:white;}
.F1:hover .F2,.F1:hover .F3{display:block;}
.F1 span, .F2, .F2 li, .F3, .F li{border-radius:.4em;}
`);
            var defaultapi = {
                title: "风一解析,失效请更换接口,鼠标停留出现多个接口",
                url: "https://jx.jsonplayer.com/player/?url="
            };
            var apis =[
                //B站新支持
                {name:"风一"+IQiyiIcon+VQQIcon+BiliIcon+YoukuIcon,url:"https://jx.jsonplayer.com/player/?url=",title:"全网超清"},
                {name:"云析"+IQiyiIcon+MgIcon+VQQIcon+BiliIcon+YoukuIcon,url:"https://jx.yparse.com/index.php?url=",title:"全网超清"},
                {name:"风二"+IQiyiIcon+VQQIcon+BiliIcon+YoukuIcon,url:"https://jx.777jiexi.com/player/?url=",title:"全网超清"},
                {name:"BL"+IQiyiIcon+VQQIcon+BiliIcon+YoukuIcon,url:"https://vip.bljiex.com/?v=",title:"全网超清"},
                {name:"夜幕"+IQiyiIcon+VQQIcon+BiliIcon+YoukuIcon,url:"https://www.yemu.xyz/?url=",title:"全网超清"},
                {name:"M3U8"+IQiyiIcon+MgIcon+BiliIcon+VQQIcon+YoukuIcon,url:"https://jx.m3u8.tv/jiexi/?url=",title:"优酷超清、腾讯超清、爱奇艺超清"},
                {name:"解析啦"+IQiyiIcon+MgIcon+BiliIcon+VQQIcon+YoukuIcon,url:"https://api.jiexi.la/?url=",title:"优酷超清、腾讯超清、爱奇艺高清"},
                {name:"1717云"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://www.1717yun.com/jx/ty.php?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"CKMOV"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://www.ckmov.vip/api.php?url=",title:"优酷超清、腾讯超清、爱奇艺高清"},
                {name:"下视频"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"http://jiexi2.xiashipin.net/jiexi/?url=",title:"优酷超清、腾讯超清、爱奇艺高清"},
                {name:"无名"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://www.administratorw.com/admin.php?url=",title:"腾讯超清、爱奇艺高清、芒果超清"},
                {name:"颜亦"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://jsap.attakids.com/?url=",title:"优酷超清、腾讯标清、爱奇艺超清、芒果超清"},
                {name:"热点"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"http://jx.rdhk.net/?v=",title:"优酷超清、腾讯标清、爱奇艺标清"},
                {name:"爱豆"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://jx.aidouer.net/?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"虾米"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://jx.xmflv.com/?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
            ];
            var defaultapi2 = {
                title: "M3U8,失效请更换接口,鼠标停留出现多个接口",
                url: "https://jx.m3u8.tv/jiexi/?url="
            };
            var apis2 =[
                {name:"冰豆"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://bd.jx.cn/?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"CK"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://www.ckplayer.vip/jiexi/?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"1717"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://ckmov.ccyjjd.com/ckmov/?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"H8"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://www.h8jx.com/jiexi.php?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"jy"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://jx.playerjy.com/?ads=0&url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"PM"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://www.playm3u8.cn/jiexi.php?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"lec"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://lecurl.cn/?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"8090"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://www.8090g.cn/?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"老板"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://vip.laobandq.com/jiexi.php?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"盘古"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://www.pangujiexi.cc/jiexi.php?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"0523"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://go.yh0523.cn/y.cy?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"4K"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://jx.4kdv.com/?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"NX"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://www.nxflv.com/?url=",title:"优酷超清、腾讯超清、爱奇艺高清、芒果超清"},
                {name:"维多"+IQiyiIcon+MgIcon+VQQIcon+YoukuIcon,url:"https://jx.ivito.cn/?url=",title:"优酷超清、腾讯标清、爱奇艺高清"},
            ];
            window.FEL = function(div){return document.createElement(div);};
            var div = FEL("div");
            var FT1 = '', i = 0;
            var FT2 = '',j = 0;
            for (i in apis) {
                FT1 += `<li data-order=${i} data-url="${apis[i].url}" title="${apis[i].title}" onclick="window.open(this.dataset.url+location.href)">${apis[i].name}</li>`;
            }
            for (j in apis2) {
                FT2 += `<li data-order=${j} data-url="${apis2[j].url}" title="${apis2[j].title}" onclick="window.open(this.dataset.url+location.href)">${apis2[j].name}</li>`;
            }
            div.innerHTML = `
<ul id="Ful">
<li class="F1"><span title="${defaultapi.title}" onclick="window.open(\'${defaultapi.url}\'+window.location.href)">▶</span><ul class="F2">${FT1}</ul></li>
<li class="F1"><span title="${defaultapi2.title}" onclick="window.open(\'${defaultapi2.url}\'+window.location.href)">①</span><ul class="F2">${FT2}</ul></li>
</ul>
`;
            document.body.appendChild(div);
        }

        $(cssSelector).append(obtainAppendHtml(host,coupon,pid,search,pname,Viptitle,Clabel,NewAct,Rlabel,AllSearch,TBlabel,JDlabel,TBPacket,JDPacket,TBtitle,JDtitle,ButtonSwitch));
    });
    function obtainAppendHtml(host,coupon,pid,search,pname,Viptitle,Clabel,NewAct,Rlabel,AllSearch,TBlabel,JDlabel,TBPacket,JDPacket,TBtitle,JDtitle,ButtonSwitch) {//
        if (host.indexOf('taobao.com') > 0) {
            if(ButtonSwitch==1){
                return '<div class="div-inline"><div class="tb-btn-buy" style="padding-top:11px;"><a href="' + coupon + pid + '" target="_blank">' + Clabel + '</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-add" style="padding-top:11px;"><a href="' + search + encodeURI(pname) + '" target="_blank">' + AllSearch + '</a></div></div>'
                    +'<div class="div-inline"><div class="tb-btn-buy" style="padding-top:11px;"><a href="http://lctnq.yhzu.cn" target="_blank">备用查券地址</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-add" style="padding-top:11px;"><a href="' + NewAct + '" target="_blank">' + Rlabel + '</a></div></div>'
                    +'<div class="div-inline"><div class="tb-btn-buy" style="padding-top:11px;"><a href="' + TBPacket + ' " title="' + TBtitle + '" target="_blank">' + TBlabel + '</a></div></div>'
                    +'<div class="div-inline"><div class="tb-btn-add" style="padding-top:11px;"><a href="' + JDPacket + '"  title="' + JDtitle + '" target="_blank">' + JDlabel + '</a></div></div>';
            }else{
                return '<div class="div-inline"><div class="tb-btn-buy" style="padding-top:11px;"><a href="' + coupon + pid + '" target="_blank">' + Clabel + '</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-add" style="padding-top:11px;"><a href="' + search + encodeURI(pname) + '" target="_blank">' + AllSearch + '</a></div></div>'
                    +'<div class="div-inline"><div class="tb-btn-buy" style="padding-top:11px;"><a href="http://lctnq.yhzu.cn" target="_blank">备用查券地址</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-add" style="padding-top:11px;"><a href="' + NewAct + '" target="_blank">' + Rlabel + '</a></div></div>';
            }
        } else if (host == 'chaoshi.detail.tmall.com') {
            if(ButtonSwitch==1){
                return '<br/><br/><br/><div class="div-inline"><div class="tb-btn-buy tb-btn-sku"  style="padding-top:11px;"><a href="' + coupon + pid + '" target="_blank">' + Clabel + '</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-basket tb-btn-sku " style="padding-top:11px;"><a href="' + search + encodeURI(pname) + '" target="_blank">' + AllSearch + '</a></div></div>'
                    +'<div class="div-inline"><div class="tb-btn-buy tb-btn-sku"  style="padding-top:11px;"><a href="http://lctnq.yhzu.cn" target="_blank">备用查券地址</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-basket tb-btn-sku " style="padding-top:11px;"><a href="' + NewAct + '" target="_blank">' + Rlabel + '</a></div></div>'
                    +'<div class="div-inline"><div class="tb-btn-buy tb-btn-sku"  style="padding-top:11px;"><a href="' + TBPacket + '" title="' + TBtitle + '" target="_blank">' + TBlabel + '</a></div></div> '
                    +'<div class="div-inline"><div class="tb-btn-basket tb-btn-sku " style="padding-top:11px;"><a href="' + JDPacket + '" title="' + JDtitle + '" target="_blank">' + JDlabel + '</a></div></div>';
            }else{
                return '<br/><br/><br/><div class="div-inline"><div class="tb-btn-buy tb-btn-sku"  style="padding-top:11px;"><a href="' + coupon + pid + '" target="_blank">' + Clabel + '</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-basket tb-btn-sku " style="padding-top:11px;"><a href="' + search + encodeURI(pname) + '" target="_blank">' + AllSearch + '</a></div></div>'
                    +'<div class="div-inline"><div class="tb-btn-buy tb-btn-sku"  style="padding-top:11px;"><a href="http://lctnq.yhzu.cn" target="_blank">备用查券地址</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-basket tb-btn-sku " style="padding-top:11px;"><a href="' + NewAct + '" target="_blank">' + Rlabel + '</a></div></div>';
            }
        } else if (host.indexOf('tmall.com') > 0 || host == 'detail.liangxinyao.com') {
            if(ButtonSwitch==1){
                return '<div class="div-inline"><div class="tb-btn-buy tb-btn-sku"  style="padding-top:11px;"><a href="' + coupon + pid + '" target="_blank">' + Clabel + '</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-basket tb-btn-sku " style="padding-top:11px;"><a href="' + search + encodeURI(pname) + '" target="_blank">' + AllSearch + '</a></div></div>'
                    +'<div class="div-inline"><div class="tb-btn-buy tb-btn-sku"  style="padding-top:11px;"><a href="http://lctnq.yhzu.cn" target="_blank">备用查券地址</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-basket tb-btn-sku " style="padding-top:11px;"><a href="' + NewAct + '" target="_blank">' + Rlabel + '</a></div></div>'
                    +'<div class="div-inline"><div class="tb-btn-buy tb-btn-sku"  style="padding-top:11px;"><a href="' + TBPacket + '" title="' + TBtitle + '" target="_blank">' + TBlabel + '</a></div></div> '
                    +'<div class="div-inline"><div class="tb-btn-basket tb-btn-sku " style="padding-top:11px;"><a href="' + JDPacket + '" title="' + JDtitle + '" target="_blank">' + JDlabel + '</a></div></div>';
            }else{
                return '<div class="div-inline"><div class="tb-btn-buy tb-btn-sku"  style="padding-top:11px;"><a href="' + coupon + pid + '" target="_blank">' + Clabel + '</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-basket tb-btn-sku " style="padding-top:11px;"><a href="' + search + encodeURI(pname) + '" target="_blank">' + AllSearch + '</a></div></div>'
                    +'<div class="div-inline"><div class="tb-btn-buy tb-btn-sku"  style="padding-top:11px;"><a href="http://lctnq.yhzu.cn" target="_blank">备用查券地址</a></div></div>'
                    + '<div class="div-inline"><div class="tb-btn-basket tb-btn-sku " style="padding-top:11px;"><a href="' + NewAct + '" target="_blank">' + Rlabel + '</a></div></div>';
            }
        } else if (host.indexOf('jd.com') > 0) {
            if(ButtonSwitch==1){
                return '<a href="' + coupon + pid + '" target="_blank" class="btn-special1 btn-lg">' + Clabel + '</a>'
                    + '<br/><br/><br/><a href="' + search + encodeURI(pname) + '" target="_blank" class="btn-special1 btn-lg">' + AllSearch + '</a>'
                    + '<a href="' + NewAct + '" target="_blank" class="btn-special1 btn-lg">' + Rlabel + '</a>'
                    +'<a href="' + TBPacket + '" title="' + TBtitle + '" target="_blank" class="btn-special1 btn-lg">' + TBlabel + '</a>'
                    +'<a href="' + JDPacket + '" title="' + JDtitle + '" target="_blank" class="btn-special1 btn-lg">' + JDlabel + '</a>';
            }else{
                return '<a href="' + coupon + pid + '" target="_blank" class="btn-special1 btn-lg">' + Clabel + '</a>'
                    + '<br/><br/><br/><a href="' + search + encodeURI(pname) + '" target="_blank" class="btn-special1 btn-lg">' + AllSearch + '</a>'
                    + '<a href="' + NewAct + '" target="_blank" class="btn-special1 btn-lg">' + Rlabel + '</a>';
            }
        } else if (host.indexOf('vip.com') > 0) {
            return '<div id="J-button-box" class="button-box" style="margin-left:40px";><div class="ui-btn-loading-before clearfix J_cartAdd_Price">'
                + '<div class="hasComparePrice clearfix"><div class="comparePrice"><a  class="comparePricess" href="' + coupon + pid + '"  target="_blank">' + Clabel + '</a></div>'
                + '<div class="finalPrice"><span class="finalPrice_price" ><a class="comparePricess" href="' + search + encodeURI(pname) + '" title="' + AllSearch + '" target="_blank">' + AllSearch + '</a></span></div>'
                + '<div class="hasComparePrice clearfix"><div class="comparePrice"><a  class="comparePricess" href="' + Rlabel + '" title="' + Viptitle + '" target="_blank" >唯品会超级红包</a></div>'
                + '<div class="finalPrice"><span class="finalPrice_price" ><a class="comparePricess" href="' + NewAct + '" title="最新活动" target="_blank">最新活动</a></span></div>'
                + '</div></div>';
        }
    }
})();