// ==UserScript== // @name 优惠购 // @namespace http://tb.newday.me/ // @version 1.1.9 // @icon http://tb.newday.me/taobao/favicon.ico // @author 哩呵 // @description 以最优惠的价格,把宝贝抱回家。插件主要功能有:[1]淘宝全站商品列表的优惠查询 [2]淘宝、京东专属优惠券自动获取 [3]主流商城的商品历史低价与价格变动信息 [4]查看和领取最新的淘宝商家优惠券 // @match *://*.taobao.com/* // @match *://*.tmall.com/* // @match *://*.tmall.hk/* // @match *://*.liangxinyao.com/* // @match *://*.yao.95095.com/* // @match *://item.jd.com/* // @match *://item.jd.hk/* // @match *://goods.kaola.com/product/* // @match *://you.163.com/item/* // @match *://item.yhd.com/* // @match *://product.suning.com/* // @match *://www.amazon.cn/dp/* // @match *://www.amazon.cn/gp/* // @match *://product.dangdang.com/* // @match *://item.gome.com.cn/* // @match *://detail.vip.com/* // @match *://*.newday.me/* // @connect taobao.com // @connect tmall.com // @connect newday.me // @require https://cdn.staticfile.org/jquery/1.12.4/jquery.min.js // @require https://cdn.staticfile.org/jquery.qrcode/1.0/jquery.qrcode.min.js // @require https://cdn.staticfile.org/snap.svg/0.5.1/snap.svg-min.js // @require https://cdn.staticfile.org/echarts/4.1.0/echarts.min.js // @require https://cdn.staticfile.org/vue/2.6.6/vue.min.js // @run-at document-end // @grant GM_getValue // @grant GM_setValue // @grant GM_listValues // @grant GM_xmlhttpRequest // @grant GM_openInTab // @noframes // @downloadURL none // ==/UserScript== (function () { 'use strict'; var container = (function () { var obj = { module_defines: {}, module_objects: {} }; obj.define = function (name, requires, callback) { name = obj.processName(name); obj.module_defines[name] = { requires: requires, callback: callback }; }; obj.require = function (name, cache) { if (typeof cache == "undefined") { cache = true; } name = obj.processName(name); if (cache && obj.module_objects.hasOwnProperty(name)) { return obj.module_objects[name]; } else if (obj.module_defines.hasOwnProperty(name)) { var requires = obj.module_defines[name].requires; var callback = obj.module_defines[name].callback; var module = obj.use(requires, callback); cache && obj.register(name, module); return module; } }; obj.use = function (requires, callback) { var module = { exports: {} }; var params = obj.buildParams(requires, module); var result = callback.apply(this, params); if (typeof result != "undefined") { return result; } else { return module.exports; } }; obj.register = function (name, module) { name = obj.processName(name); obj.module_objects[name] = module; }; obj.buildParams = function (requires, module) { var params = []; requires.forEach(function (name) { params.push(obj.require(name)); }); params.push(obj.require); params.push(module.exports); params.push(module); return params; }; obj.processName = function (name) { return name.toLowerCase(); }; return { define: obj.define, use: obj.use, register: obj.register, modules: obj.module_objects }; })(); container.define("runtime", [], function () { var obj = { url: location.href, referer: document.referrer, }; obj.getUrl = function () { return obj.url; }; obj.setUrl = function (url) { obj.url = url; }; obj.getReferer = function () { return obj.referer; }; obj.setReferer = function (referer) { obj.referer = referer; }; obj.getUrlParam = function (name) { var param = obj.parseUrlParam(obj.getUrl()); if (name) { return param.hasOwnProperty(name) ? param[name] : null; } else { return param; } }; obj.parseUrlParam = function (url) { if (url.indexOf("?")) { url = url.split("?")[1]; } var reg = /([^=&\s]+)[=\s]*([^=&\s]*)/g; var obj = {}; while (reg.exec(url)) { obj[RegExp.$1] = RegExp.$2; } return obj; }; return obj; }); container.define("storage", [], function () { var obj = {}; obj.getValue = function (name, defaultValue) { return GM_getValue(name, defaultValue); }; obj.setValue = function (name, value) { GM_setValue(name, value); }; obj.getValueList = function () { var nameList = GM_listValues(); var valueList = {}; nameList.forEach(function (name) { valueList[name] = obj.getValue(name); }); return valueList; }; return obj; }); container.define("config", ["storage"], function (storage) { var obj = {}; obj.getConfig = function (name) { var configJson = storage.getValue("configJson"); var configObject = obj.parseJson(configJson); if (name) { return configObject.hasOwnProperty(name) ? configObject[name] : null; } else { return configObject; } }; obj.setConfig = function (name, value) { var configObject = obj.getConfig(); configObject[name] = value; storage.setValue("configJson", JSON.stringify(configObject)); }; obj.parseJson = function (jsonStr) { var jsonObject = {}; try { if (jsonStr) { jsonObject = JSON.parse(jsonStr); } } catch (e) { } return jsonObject; }; return obj; }); container.define("option", ["storage", "constant"], function (storage, constant) { var obj = { constant: constant.option }; obj.isOptionActive = function (item) { var name = item.name; var option = obj.getOption(); return option.indexOf(name) >= 0 ? true : false; }; obj.setOptionActive = function (item) { var name = item.name; var option = obj.getOption(); if (option.indexOf(name) < 0) { option.push(name); obj.setOption(option); } }; obj.setOptionUnActive = function (item) { var name = item.name; var option = obj.getOption(); var index = option.indexOf(name); if (index >= 0) { delete option[index]; obj.setOption(option); } }; obj.getOption = function () { var option = []; var optionJson = storage.getValue("optionJson"); var optionObject = obj.parseJson(optionJson); Object.values(obj.constant).forEach(function (item) { var name = item.name; if (optionObject.hasOwnProperty(name)) { if (optionObject[name] != "no") { option.push(name); } } else if (item.value != "no") { option.push(name); } }); return option; }; obj.setOption = function (option) { var optionObject = {}; Object.values(obj.constant).forEach(function (item) { var name = item.name; if (option.indexOf(name) >= 0) { optionObject[name] = "yes"; } else { optionObject[name] = "no"; } }); storage.setValue("optionJson", JSON.stringify(optionObject)); }; obj.parseJson = function (jsonStr) { var jsonObject = {}; try { if (jsonStr) { jsonObject = JSON.parse(jsonStr); } } catch (e) { } return jsonObject; }; return obj; }); container.define("mode", [], function () { var obj = { constant: { addon: "addon", script: "script" } }; obj.getMode = function () { if (typeof GM_info == "undefined") { return obj.constant.addon; } else if (GM_info.scriptHandler) { return obj.constant.script; } else { return obj.constant.addon; } }; return obj; }); container.define("user", ["storage"], function (storage) { var obj = {}; obj.getUid = function () { var uid = storage.getValue("uid"); if (!uid) { uid = storage.getValue("_uid_"); } if (!uid) { uid = obj.randString(32); storage.setValue("uid", uid); } return uid; }; obj.randString = function (length) { var possible = "abcdefghijklmnopqrstuvwxyz0123456789"; var text = ""; for (var i = 0; i < length; i++) { text += possible.charAt(Math.floor(Math.random() * possible.length)); } return text; }; return obj; }); container.define("browser", [], function () { var obj = { constant: { firefox: "firefox", edge: "edge", baidu: "baidu", liebao: "liebao", uc: "uc", qq: "qq", sogou: "sogou", opera: "opera", maxthon: "maxthon", ie2345: "2345", se360: "360", chrome: "chrome", safari: "safari", other: "other" } }; obj.getBrowser = function () { return obj.matchBrowserType(navigator.userAgent); }; obj.matchBrowserType = function (userAgent) { var browser = obj.constant.other; userAgent = userAgent.toLowerCase(); if (userAgent.match(/firefox/) != null) { browser = obj.constant.firefox; } else if (userAgent.match(/edge/) != null) { browser = obj.constant.edge; } else if (userAgent.match(/bidubrowser/) != null) { browser = obj.constant.baidu; } else if (userAgent.match(/lbbrowser/) != null) { browser = obj.constant.liebao; } else if (userAgent.match(/ubrowser/) != null) { browser = obj.constant.uc; } else if (userAgent.match(/qqbrowse/) != null) { browser = obj.constant.qq; } else if (userAgent.match(/metasr/) != null) { browser = obj.constant.sogou; } else if (userAgent.match(/opr/) != null) { browser = obj.constant.opera; } else if (userAgent.match(/maxthon/) != null) { browser = obj.constant.maxthon; } else if (userAgent.match(/2345explorer/) != null) { browser = obj.constant.ie2345; } else if (userAgent.match(/chrome/) != null) { if (obj.existMime("type", "application/vnd.chromium.remoting-viewer")) { browser = obj.constant.se360; } else { browser = obj.constant.chrome; } } else if (userAgent.match(/safari/) != null) { browser = obj.constant.safari; } return browser; }; obj.existMime = function (option, value) { if (typeof navigator != "undefined") { var mimeTypes = navigator.mimeTypes; for (var mt in mimeTypes) { if (mimeTypes[mt][option] == value) { return true; } } } return false; }; return obj; }); container.define("env", ["mode", "user", "browser"], function (mode, user, browser) { var obj = {}; obj.getMode = function () { return mode.getMode(); }; obj.getAid = function () { var aid = GM_info.script.uuid; if (aid) { return aid; } else { return GM_info.scriptHandler.toLowerCase(); } }; obj.getUid = function () { return user.getUid(); }; obj.getVersion = function () { return GM_info.script.version; }; obj.getBrowser = function () { return browser.getBrowser(); }; obj.getInfo = function () { return { mode: obj.getMode(), aid: obj.getAid(), uid: obj.getUid(), version: obj.getVersion(), browser: obj.getBrowser() }; }; return obj; }); container.define("http", [], function () { var obj = {}; obj.ajax = function (option) { var details = { method: option.type, url: option.url, responseType: option.dataType, onload: function (result) { option.success && option.success(result.response); }, onerror: function (result) { option.error && option.error(result.error); } }; // 提交数据 if (option.data) { if (option.data instanceof FormData) { details.data = option.data; } else { var formData = new FormData(); for (var i in option.data) { formData.append(i, option.data[i]); } details.data = formData; } } // 自定义头 if (option.headers) { details.headers = option.headers; } // 超时 if (option.timeout) { details.timeout = option.timeout; } GM_xmlhttpRequest(details); }; return obj; }); container.define("router", [], function () { var obj = {}; obj.goUrl = function (url) { obj.eval('location.href = "' + url + '";'); }; obj.openUrl = function (url) { obj.eval('window.open("' + url + '");'); }; obj.openTab = function (url, active) { GM_openInTab(url, !active); }; obj.eval = function (script) { var node = document.createElementNS(document.lookupNamespaceURI(null) || "http://www.w3.org/1999/xhtml", "script"); node.textContent = script; (document.head || document.body || document.documentElement || document).appendChild(node); node.parentNode.removeChild(node) }; return obj; }); container.define("logger", ["env", "constant"], function (env, constant) { var obj = { level: 3, constant: { debug: 0, info: 1, warn: 2, error: 3 } }; obj.debug = function (message) { obj.log(message, obj.constant.debug); }; obj.info = function (message) { obj.log(message, obj.constant.info); }; obj.warn = function (message) { obj.log(message, obj.constant.warn); }; obj.error = function (message) { obj.log(message, obj.constant.error); }; obj.log = function (message, level) { if (level < obj.level) { return false; } console.group("[" + constant.name + "]" + env.getMode()); switch (level) { case obj.constant.debug: console.log(message); break; case obj.constant.info: console.info(message); break; case obj.constant.warn: console.warn(message); break; case obj.constant.error: console.error(message); break; default: console.log(message); break; } console.groupEnd(); }; obj.setLevel = function (level) { obj.level = level; }; return obj; }); container.define("meta", ["constant", "$"], function (constant, $) { var obj = {}; obj.existMeta = function (name) { name = obj.processName(name); if ($("meta[name='" + name + "']").length) { return true; } else { return false; } }; obj.appendMeta = function (name, content) { name = obj.processName(name); content || (content = "on"); $('').appendTo($("head")); }; obj.processName = function (name) { return constant.name + "::" + name; }; return obj; }); container.define("calendar", [], function () { var obj = {}; obj.formatTime = function (timestamp, format) { timestamp || (timestamp = (new Date()).getTime()); format || (format = "Y-m-d H:i:s"); var date = new Date(timestamp); var year = 1900 + date.getYear(); var month = "0" + (date.getMonth() + 1); var day = "0" + date.getDate(); var hour = "0" + date.getHours(); var minute = "0" + date.getMinutes(); var second = "0" + date.getSeconds(); var vars = { "Y": year, "m": month.substring(month.length - 2, month.length), "d": day.substring(day.length - 2, day.length), "H": hour.substring(hour.length - 2, hour.length), "i": minute.substring(minute.length - 2, minute.length), "s": second.substring(second.length - 2, second.length) }; return obj.replaceVars(vars, format); }; obj.replaceVars = function (vars, value) { Object.keys(vars).forEach(function (key) { value = value.replace(key, vars[key]); }); return value; }; return obj; }); container.define("unsafe_window", [], function () { if (typeof unsafeWindow == "undefined") { return window; } else { return unsafeWindow; } }); /** custom start **/ container.define("constant", ["mode", "browser"], function (mode, browser) { return { name: "yhg", mode: mode.constant, browser: browser.constant, option: { chart_scale: { name: "chart_scale", value: "yes" }, chart_point: { name: "chart_point", value: "yes" }, chart_zoom: { name: "chart_zoom", value: "no" }, taobao_detail: { name: "taobao", value: "yes" }, taobao_coupon: { name: "taobao_coupon", value: "yes" }, taobao_search: { name: "taobao_search", value: "yes" }, taobao_shop: { name: "taobao_shop", value: "yes" }, taobao_other: { name: "taobao_other", value: "no" }, jd_detail: { name: "jd", value: "yes" }, kaola_detail: { name: "kaola", value: "yes" }, yanxuan_detail: { name: "yanxuan", value: "yes" }, yhd_detail: { name: "yhd", value: "yes" }, amazon_detail: { name: "amazon", value: "yes" }, suning_detail: { name: "suning", value: "yes" }, dangdang_detail: { name: "dangdang", value: "yes" }, guomei_detail: { name: "guomei", value: "yes" }, vip_detail: { name: "vip", value: "no" } }, site: { taobao: "taobao", jd: "jd", kaola: "kaola", guomei: "guomei", yanxuan: "yanxuan", yhd: "yhd", amazon: "amazon", suning: "suning", dangdang: "dangdang", vip: "vip", newday: "newday" }, router: { home: "http://tb.newday.me", option: "http://tb.newday.me/script/option.html" } }; }); container.define("resource", [], function () { var obj = {}; obj.getText = function (name) { if (name == "style") { return obj.getStyleText(); } else { return null; } }; obj.getStyleText = function () { return `#tb-cool-area{border:1px solid #eee;margin:0 auto;position:relative;clear:both;display:none}#tb-cool-area .tb-cool-area-home{position:absolute;top:5px;right:10px;z-index:10000}#tb-cool-area .tb-cool-area-home a{color:#515858;font-size:10px;text-decoration:none}#tb-cool-area .tb-cool-area-home a.new-version{color:#ff0036}#tb-cool-area .tb-cool-area-benefit{width:240px;float:left}#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-qrcode{text-align:center;min-height:150px;margin-top:40px}#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-qrcode canvas,#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-qrcode img{margin:0 auto}#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-title{margin-top:20px;color:#000;font-size:14px;font-weight:700;text-align:center}#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-title span{color:#ff0036;font-weight:700}#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-action{margin-top:10px;text-align:center}#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-action a{text-decoration:none}#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-action .tb-cool-quan-button{min-width:120px;padding:0 8px;line-height:35px;color:#fff;background:#ff0036;font-size:13px;font-weight:700;letter-spacing:1.5px;margin:0 auto;text-align:center;border-radius:15px;display:inline-block;cursor:pointer}#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-action .tb-cool-quan-button.quan-none{color:#000;background:#bec5c5}#tb-cool-area .tb-cool-area-history{height:300px;overflow:hidden;position:relative}#tb-cool-area .tb-cool-area-history #tb-cool-area-chart,#tb-cool-area .tb-cool-area-history .tb-cool-area-container{width:100%;height:100%}#tb-cool-area .tb-cool-area-history .tb-cool-history-tip{position:absolute;margin:0;top:50%;left:50%;letter-spacing:1px;font-size:15px;transform:translateX(-50%) translateY(-50%)}#tb-cool-area .tb-cool-area-table{margin-top:10px;position:relative;overflow:hidden}#tb-cool-area .tb-cool-quan-tip{position:absolute;margin:0;top:50%;left:50%;letter-spacing:1px;font-size:15px;opacity:0;transform:translateX(-50%) translateY(-50%)}#tb-cool-area .tb-cool-quan-tip a{color:#333;font-weight:400;text-decoration:none}#tb-cool-area .tb-cool-quan-tip a:hover{color:#ff0036}#tb-cool-area .tb-cool-area-table .tb-cool-quan-table{width:100%;font-size:14px;text-align:center}#tb-cool-area .tb-cool-area-table .tb-cool-quan-table tr td{padding:4px;color:#1c2323;border-top:1px solid #eee;border-left:1px solid #eee}#tb-cool-area .tb-cool-area-table .tb-cool-quan-table tr td span{color:#ff0036;font-weight:700}#tb-cool-area .tb-cool-area-table .tb-cool-quan-table tr td:first-child{border-left:none}#tb-cool-area .tb-cool-area-table .tb-cool-quan-table .tb-cool-quan-link{width:60px;line-height:24px;font-size:12px;background:#ff0036;text-decoration:none;display:inline-block}#tb-cool-area .tb-cool-area-table .tb-cool-quan-table .tb-cool-quan-link-enable{cursor:pointer;color:#fff}#tb-cool-area .tb-cool-area-table .tb-cool-quan-table .tb-cool-quan-link-disable{cursor:default;color:#000;background:#ccc}#tb-cool-area .tb-cool-quan-empty .tb-cool-quan-tip{opacity:1}#tb-cool-area .tb-cool-quan-empty .tb-cool-quan-table{filter:blur(3px);-webkit-filter:blur(3px);-moz-filter:blur(3px);-ms-filter:blur(3px)}.tb-cool-box-area{position:absolute;top:10px;left:5px;z-index:9999}.tb-cool-box-wait{cursor:pointer}.tb-cool-box-already{position:relative}.tb-cool-box-info{width:auto!important;height:auto!important;padding:6px 8px!important;font-size:12px;color:#fff!important;border-radius:15px;cursor:pointer;text-decoration:none!important}.tb-cool-box-info:hover{text-decoration:none!important}.tb-cool-box-info:visited{text-decoration:none!important}.tb-cool-box-info-default{background:#3186fd!important}.tb-cool-box-info-find{background:#ff0036!important}.tb-cool-box-info-empty{color:#000!important;background:#ccc!important}.tb-cool-box-info-translucent{opacity:.33}.mui-zebra-module .tb-cool-box-info{font-size:10px}.zebra-ziying-qianggou .tb-cool-box-area{right:10px;left:auto}.import-shangou-itemcell .tb-cool-box-area{right:10px;left:auto}.item_s_cpb .tb-cool-box-area{top:auto;bottom:10px}.j-mdv-chaoshi .m-floor .tb-cool-box-area a{width:auto;height:auto}.left-wider .proinfo-main{margin-bottom:40px}.detailHd .m-info{margin-bottom:20px}.swal2-container{z-index:199999999;}`; }; return obj; }); container.define("api", ["http", "env", "snap"], function (http, env, snap) { var obj = { base: "http://api.newday.me" }; obj.versionQuery = function (callback) { http.ajax({ type: "post", url: obj.base + "/taobao/tool/version", dataType: "json", data: { uid: env.getUid(), aid: env.getAid(), version: env.getVersion(), browser: env.getBrowser(), mode: env.getMode() }, success: function (response) { callback && callback(response); }, error: function (error) { callback && callback(""); } }); }; obj.itemQuery = function (url, callback) { http.ajax({ type: "post", url: obj.base + "/taobao/tool/query", dataType: "json", data: { item_url: url, uid: env.getUid(), aid: env.getAid(), version: env.getVersion(), browser: env.getBrowser(), mode: env.getMode() }, success: function (response) { callback && callback(response); }, error: function (error) { callback && callback(""); } }); }; obj.basicQuery = function (itemId, callback) { http.ajax({ type: "post", url: obj.base + "/taobao/tool/basic", dataType: "json", data: { item_id: itemId, source: "taobao", uid: env.getUid(), aid: env.getAid(), version: env.getVersion(), browser: env.getBrowser(), mode: env.getMode() }, success: function (response) { callback && callback(response); }, error: function (error) { callback && callback(""); } }); }; obj.trendQuery = function (url, callback) { http.ajax({ type: "post", url: obj.base + "/taobao/tool/trend", dataType: "json", data: { item_url: url, item_point: obj.getStrPoint(url), uid: env.getUid(), aid: env.getAid(), version: env.getVersion(), browser: env.getBrowser(), mode: env.getMode() }, success: function (response) { callback && callback(response); }, error: function (error) { callback && callback(""); } }); }; obj.logOption = function (option, callback) { http.ajax({ type: "post", url: obj.base + "/taobao/tool/option", dataType: "json", data: { option_json: JSON.stringify(option), uid: env.getUid(), aid: env.getAid(), version: env.getVersion(), browser: env.getBrowser(), mode: env.getMode() }, success: function (response) { callback && callback(response); }, error: function (error) { callback && callback(""); } }); }; obj.couponQueryCart = function (itemId, shopId, callback) { var url = "https://bar.tmall.com/cueAssetMsg.htm?sellerId=" + shopId + "&itemId=" + itemId + "&bizInfo=..pc&_input_charset=UTF-8&callback=jsonp"; http.ajax({ type: "get", url: url, dataType: "text", headers: { "referer": "https://www.tmall.com/" }, success: function (response) { callback && callback(response); }, error: function (error) { callback && callback(""); } }); }; obj.couponQueryShop = function (itemId, shopId, callback) { http.ajax({ type: "get", url: "https://cart.taobao.com/json/GetPriceVolume.do?sellerId=" + shopId, dataType: "json", success: function (response) { callback && callback(response); }, error: function (error) { callback && callback(""); } }); }; obj.getStrPoint = function (str) { if (str.length < 2) { return "0:0"; } var path = ""; var current, last = str[0].charCodeAt(); var sum = last; for (var i = 1; i < str.length; i++) { current = str[i].charCodeAt(); if (i == 1) { path = path + "M"; } else { path = path + " L"; } path = path + current + " " + last; last = current; sum = sum + current; } path = path + " Z"; var index = sum % str.length; var data = snap.path.getPointAtLength(path, str[index].charCodeAt()); return data.m.x + ":" + data.n.y; }; return obj; }); container.define("updater", ["config", "env", "calendar", "api"], function (config, env, calendar, api) { var obj = {}; obj.getLatest = function () { var versionLatest = config.getConfig("version_latest"); if (versionLatest) { return versionLatest; } else { return env.getVersion(); } }; obj.init = function () { var versionDate = config.getConfig("version_date"); var currentDate = calendar.formatTime(null, "Ymd"); if (!versionDate || versionDate < currentDate) { api.versionQuery(function (response) { config.setConfig("version_date", currentDate); if (response && response.code == 1) { config.setConfig("version_latest", response.data.version); } }); } }; return obj; }); container.define("core", ["config", "env", "router", "constant", "resource", "updater", "$"], function (config, env, router, constant, resource, updater, $) { var obj = {}; obj.appendStyle = function () { var styleText = resource.getText("style"); $("").text(styleText).appendTo($("head")); }; obj.jumpLink = function (jumpUrl, jumpMode) { switch (jumpMode) { case 9: // self router.goUrl(jumpUrl); break; case 6: // new router.openUrl(jumpUrl); break; case 3: // new & not active router.openTab(jumpUrl, false); break; case 1: // new & active router.openTab(jumpUrl, true); break; } }; obj.jumpCouponLink = function (jumpUrl, jumpMode) { var callback = function () { obj.jumpLink(jumpUrl, jumpMode); }; if (!window.swal) { callback(); } else if (env.getBrowser() != constant.browser.se360 || config.getConfig("dialog") == 0) { callback(); } else if (config.getConfig("remember")) { callback(); } else { var option = { title: "", html: "即将跳转到淘宝客链接领取内部优惠券

只是去领取优惠券,对购物没有任何影响哦!", type: "question", showCloseButton: true, showCancelButton: true, confirmButtonColor: "#3085d6", cancelButtonColor: "#218838", confirmButtonText: "同意跳转", cancelButtonText: "跳转并不再提示" }; window.swal(option).then(function (result) { if (result.dismiss == "cancel") { config.setConfig("remember", "yes"); setTimeout(callback, 500); } else if (typeof result.dismiss == "undefined") { setTimeout(callback, 500); } }); } }; obj.openOptionPage = function () { if (GM_info.addon && GM_info.addon.options_page) { router.openTab(GM_info.addon.options_page, true); } else { router.openTab(constant.router.option, true); } }; obj.initVersion = function () { updater.init(); }; obj.ready = function (callback) { obj.initVersion(); callback && callback(); }; return obj; }); container.define("app_detail", ["runtime", "option", "env", "logger", "calendar", "constant", "core", "api", "echarts", "$"], function (runtime, option, env, logger, calendar, constant, core, api, echarts, $) { var obj = { trendData: null }; obj.getSite = function () { return obj.matchSite(runtime.getUrl()); }; obj.getItemUrl = function () { return obj.matchItemUrl(runtime.getUrl()); }; obj.run = function () { var site = obj.getSite(); switch (site) { case constant.site.taobao: option.isOptionActive(option.constant.taobao_detail) && obj.initDetailTaoBao(); break; case constant.site.jd: option.isOptionActive(option.constant.jd_detail) && obj.initDetailJd(); break; case constant.site.kaola: option.isOptionActive(option.constant.kaola_detail) && obj.initDetailKaoLa(); break; case constant.site.yanxuan: option.isOptionActive(option.constant.yanxuan_detail) && obj.initDetailYanXuan(); break; case constant.site.yhd: option.isOptionActive(option.constant.yhd_detail) && obj.initDetailYhd(); break; case constant.site.suning: option.isOptionActive(option.constant.suning_detail) && obj.initDetailSuNing(); break; case constant.site.amazon: option.isOptionActive(option.constant.amazon_detail) && obj.initDetailAmazon(); break; case constant.site.dangdang: option.isOptionActive(option.constant.dangdang_detail) && obj.initDetailDangDang(); break; case constant.site.guomei: option.isOptionActive(option.constant.guomei_detail) && obj.initDetailGuoMei(); break; case constant.site.vip: option.isOptionActive(option.constant.vip_detail) && obj.initDetailVip(); break; default: return false; } return true; }; obj.initDetailTaoBao = function () { if ($('#detail').length || $(".ju-wrapper").length) { var html = obj.getAppendHtml(); if ($("#J_DetailMeta").length) { $("#J_DetailMeta").append(html); } else { $("#detail").append(html + "
"); } var onEmpty = function () { obj.showText("打开淘宝扫一扫"); }; obj.initDetail(onEmpty); } else { setTimeout(function () { obj.initDetailTaoBao(); }, 1000); } }; obj.initDetailJd = function () { if ($(".product-intro").length) { var html = obj.getAppendHtml(); $(".product-intro").append(html); var onEmpty = function () { obj.showText("打开京东扫一扫"); }; obj.initDetail(onEmpty); } else { setTimeout(function () { obj.initDetailJd(); }, 1000); } }; obj.initDetailKaoLa = function () { if ($("#j-producthead").length) { var html = obj.getAppendHtml(); $("#j-producthead").after(html); var onEmpty = function () { obj.showText("打开考拉扫一扫"); }; obj.initDetail(onEmpty); } else { setTimeout(function () { obj.initDetailKaoLa(); }, 1000); } }; obj.initDetailYanXuan = function () { if ($(".detailHd").length) { var html = obj.getAppendHtml(); $(".detailHd").append(html); var onEmpty = function () { obj.showText("打开严选扫一扫"); }; obj.initDetail(onEmpty); } else { setTimeout(function () { obj.initDetailYanXuan(); }, 1000); } }; obj.initDetailYhd = function () { if ($(".fm_detail_one").length) { var html = obj.getAppendHtml(); $(".fm_detail_one").append(html); var onEmpty = function () { obj.showText("打开一号店扫一扫"); }; obj.initDetail(onEmpty); } else { setTimeout(function () { obj.initDetailYhd(); }, 1000); } }; obj.initDetailSuNing = function () { if ($(".proinfo-container").length) { var html = obj.getAppendHtml(); $(".proinfo-container").append(html); var onEmpty = function () { obj.showText("打开苏宁扫一扫"); }; obj.initDetail(onEmpty); } else { setTimeout(function () { obj.initDetailSuNing(); }, 1000); } }; obj.initDetailAmazon = function () { if ($("#centerCol").length) { var html = obj.getAppendHtml(); $("#centerCol").after(html); var onEmpty = function () { obj.showText("手机扫一扫"); }; obj.initDetail(onEmpty); } else { setTimeout(function () { obj.initDetailAmazon(); }, 1000); } }; obj.initDetailDangDang = function () { if ($(".product_main").length) { var html = obj.getAppendHtml(); $(".product_main").append(html); var onEmpty = function () { obj.showText("打开当当扫一扫"); }; obj.initDetail(onEmpty); } else { setTimeout(function () { obj.initDetailDangDang(); }, 1000); } }; obj.initDetailGuoMei = function () { if ($(".gome-container").length) { var html = obj.getAppendHtml(); $(".gome-container").append(html); var onEmpty = function () { obj.showText("打开国美扫一扫"); }; obj.initDetail(onEmpty); } else { setTimeout(function () { obj.initDetailGuoMei(); }, 1000); } }; obj.initDetailVip = function () { if ($(".FW-product").length) { var html = obj.getAppendHtml(); $(".FW-product").append(html); var onEmpty = function () { obj.showText("打开唯品会扫一扫"); }; obj.initDetail(onEmpty); } else { setTimeout(function () { obj.initDetailVip(); }, 1000); } }; obj.initDetail = function (onEmpty) { // 版本信息 obj.showVersion(); // 注册事件 obj.initClickEvent(); var site = obj.getSite(); if (site == constant.site.taobao) { obj.initCouponEvent(); } else if (site == constant.site.amazon) { obj.initResizeEvent(); } // 商品查询 api.itemQuery(runtime.getUrl(), function (response) { logger.debug(response); $("#tb-cool-area").show(); if (response && response.code == 1) { var data = response.data; // 二维码 obj.showQrcode(data.app_url); // 价格趋势 obj.showChart(data.good_url); // 隐藏优惠券 if (data.coupon_money > 0) { obj.showCoupon(data); } else { onEmpty(); } // 优惠券列表 if (obj.getSite() == constant.site.taobao && option.isOptionActive(option.constant.taobao_coupon)) { obj.showCouponList(data.item_id, data.shop_id); } } else { var itemUrl = obj.getItemUrl(); // 二维码 obj.showQrcode(itemUrl); // 二维码 obj.showChart(itemUrl); // 无优惠券 onEmpty(); } }); }; obj.initResizeEvent = function () { $(window).resize(function () { obj.showChartRefresh(); }); }; obj.initCouponEvent = function () { $(document).on("click", ".tb-cool-quan-link-enable", function () { obj.openCouponLink($(this).attr("data-coupon"), $(this).attr("data-shop")); }); $(document).on("click", ".tb-cool-jump", function () { var jumpUrl = $(this).attr("data-url"); var jumpMode = parseInt($(this).attr("data-mode")); core.jumpLink(jumpUrl, jumpMode); }); $(document).on("click", ".tb-cool-quan-button.quan-exist", function () { var jumpUrl = $(this).attr("data-url"); var jumpMode = parseInt($(this).attr("data-mode")); core.jumpCouponLink(jumpUrl, jumpMode); }); }; obj.initClickEvent = function () { // 打开配置页 $(document).on("click", ".nd-open-page-option", function () { core.openOptionPage(); }); }; obj.openCouponLink = function (couponId, shopId) { var couponLink = obj.buildCouponLink(couponId, shopId); window.open(couponLink, "领取优惠券", "width=600,height=600,toolbar=no,menubar=no,scrollbars=auto,resizeable=no,location=no,status=no"); }; obj.showCoupon = function (data) { var html = "

券后价 " + data.coupon_price.toFixed(2) + "

"; $(".tb-cool-quan-title").html(html); html = '领' + data.coupon_money + '元优惠券'; $(".tb-cool-quan-action").html(html); }; obj.showQrcode = function (url) { $(".tb-cool-quan-qrcode").html(""); $(".tb-cool-quan-qrcode").qrcode({ width: 150, height: 150, text: url }); }; obj.showText = function (buttonText, infoText) { var infoTextArr = ["移动端快捷购买"]; if (!infoText) { var index = (new Date()).valueOf() % infoTextArr.length; infoText = infoTextArr[index]; } var infoHtml = "

" + infoText + "

"; $(".tb-cool-quan-title").html(infoHtml); buttonText || (buttonText = "手机扫一扫"); var buttonHtml = '' + buttonText + ''; $(".tb-cool-quan-action").html(buttonHtml); }; obj.showVersion = function () { var html = '[ 配置 ]'; $(".tb-cool-area-home").html(html); }; obj.showChart = function (itemUrl) { $(".tb-cool-history-tip").html("查询历史价格中..."); api.trendQuery(itemUrl, function (response) { logger.debug(response); obj.trendData = obj.parseTrendResponse(response); obj.showChartRefresh(); }); }; obj.showChartRefresh = function () { obj.showChartData(obj.trendData); }; obj.showChartData = function (trendData) { if (trendData) { var option = obj.buildChartOption(trendData); $(".tb-cool-area-container").html('
'); echarts.init(document.getElementById("tb-cool-area-chart")).setOption(option); $(".tb-cool-history-tip").html(""); } else { $(".tb-cool-history-tip").html("暂无商品历史价格信息"); } }; obj.showCouponList = function (itemId, shopId) { api.couponQueryCart(itemId, shopId, function (content) { var couponList = obj.parseCouponListCart(itemId, shopId, content, {}); if (couponList) { api.couponQueryShop(itemId, shopId, function (response) { couponList = obj.parseCouponListShop(itemId, shopId, response, couponList); obj.showCouponListLoginYes(couponList); }); } else { couponList = obj.parseCouponListPadding(); obj.showCouponListLoginNo(couponList); } }); }; obj.showCouponListLoginYes = function (couponList) { obj.buildCouponListTable(couponList); }; obj.showCouponListLoginNo = function (couponList) { obj.buildCouponListTable(couponList); var loginUrl = obj.buildLoginUrl(); $(".tb-cool-quan-tip").html('登录后可以查看店铺优惠券哦'); $(".tb-cool-area-table").addClass("tb-cool-quan-empty"); }; obj.buildCouponListTable = function (couponList) { var list = Object.values(couponList); var compare = function (a, b) { if (a.coupon_money == b.coupon_money) { if (a.coupon_money_start > b.coupon_money_start) { return 1; } else if (a.coupon_money_start == b.coupon_money_start) { return 0; } else { return -1; } } else { if (a.coupon_money > b.coupon_money) { return 1; } else if (a.coupon_money == b.coupon_money) { return 0; } else { return -1; } } }; list.sort(compare); var html = ""; list.forEach(function (item) { html += ""; html += "满 " + item.coupon_money_start + " 减 " + item.coupon_money + " 元"; var couponCommon; if (item.coupon_common == 1) { couponCommon = "限定商品"; } else if (item.coupon_common == 0) { couponCommon = "通用"; } else { couponCommon = "--"; } html += " " + couponCommon + ""; html += "" + item.coupon_start + " ~ " + item.coupon_end + ""; html += "已领 " + item.coupon_num + " 张"; if (item.coupon_receive) { html += '已领取'; } else { html += '领 取'; } html += ""; }); $(".tb-cool-quan-table").html(html); }; obj.buildLoginUrl = function () { var itemUrl = obj.getItemUrl(); return "https://login.tmall.com/?redirectURL=" + escape(itemUrl); }; obj.buildCouponLink = function (couponId, shopId) { return "https://market.m.taobao.com/apps/aliyx/coupon/detail.html?wh_weex=true&activity_id=" + couponId + "&seller_id=" + shopId; }; obj.buildChartOption = function (trendData) { logger.debug(trendData); var text = "历史低价:{red|¥" + parseFloat(trendData.stat.min_price).toFixed(2) + "} ( {red|" + trendData.stat.min_date + "} )"; var chartOption = { title: { left: "center", subtext: text, subtextStyle: { color: "#000", rich: { red: { color: "red" } } } }, tooltip: { trigger: "axis", axisPointer: { type: "cross" }, formatter: function (params) { params = params[0]; var year = params.name.getFullYear(); var month = params.name.getMonth() + 1; var day = params.name.getDate(); if (month < 10) { month = "0" + month; } if (day < 10) { day = "0" + day; } return "日期:" + year + "-" + month + "-" + day + "
价格:¥" + params.value[1].toFixed(2); } }, grid: { left: 0, right: 20, top: 50, bottom: 10, containLabel: true }, xAxis: { type: "time" }, yAxis: { type: "value" }, series: [ { type: "line", step: "end", data: trendData.data, symbolSize: 3, lineStyle: { width: 1.5, color: "#ed5700" } } ] }; // 自动刻度 if (option.isOptionActive(option.constant.chart_scale)) { var step = 10; var Ymin = Math.floor(trendData.stat.min_price * 0.9 / step) * step; var Ymax = Math.ceil(trendData.stat.max_price * 1.1 / step) * step; chartOption.yAxis.min = Ymin; chartOption.yAxis.max = Ymax; } // 标记极值 if (option.isOptionActive(option.constant.chart_point)) { var series = chartOption.series[0]; series.markPoint = { data: [ { value: trendData.stat.min_price, coord: [trendData.stat.min_time, trendData.stat.min_price], name: "最小值", itemStyle: { color: "green" } }, { value: trendData.stat.max_price, coord: [trendData.stat.max_time, trendData.stat.max_price], name: "最大值", itemStyle: { color: "red" } } ] }; } // 自由缩放 if (option.isOptionActive(option.constant.chart_zoom)) { chartOption.dataZoom = [ { type: "inside", start: 0, end: 100 } ]; } logger.debug(chartOption); return chartOption; }; obj.parseTrendResponse = function (response) { if (response && response.code == 1 && response.data.list.length) { var list = response.data.list; var trendData = { stat: { min_price: 0, min_time: null, min_date: null, max_price: 0, max_time: null, max_date: null }, data: [] }; list.forEach(function (item, index) { var price = Math.ceil(item.price); var time = new Date(item.time * 1000); var date = calendar.formatTime(item.time * 1000, "Y-m-d"); var point = { name: time, value: [ date, price ] }; trendData.data.push(point); if (trendData.stat.min_price == 0 || trendData.stat.min_price >= price) { trendData.stat.min_price = price; trendData.stat.min_time = time; trendData.stat.min_date = date; } if (trendData.stat.max_price <= price) { trendData.stat.max_price = price; trendData.stat.max_time = time; trendData.stat.max_date = date; } }); return trendData; } else { return null; } }; obj.parseCouponListPadding = function () { return [ { shop_id: "", coupon_receive: false, coupon_num: 0, coupon_id: "", coupon_money: 10, coupon_money_start: 20, coupon_start: "2018-01-01", coupon_end: "2018-12-12", coupon_common: 0 }, { shop_id: "", coupon_receive: false, coupon_num: 0, coupon_id: "", coupon_money: 20, coupon_money_start: 40, coupon_start: "2018-01-01", coupon_end: "2018-12-12", coupon_common: 1 }, { shop_id: "", coupon_receive: false, coupon_num: 0, coupon_id: "", coupon_money: 40, coupon_money_start: 80, coupon_start: "2018-01-01", coupon_end: "2018-12-12", coupon_common: 0 } ]; }; obj.parseCouponListCart = function (itemId, shopId, content, couponList) { var jsonStr = content.replace("window.jsonp && jsonp(", "").replace("})", "}"); var response = JSON.parse(jsonStr); if (response && response.oci && response.oci.c) { var list = response.oci.c; list.forEach(function (item) { var couponId = item.sid; if (!couponList.hasOwnProperty(couponId)) { couponList[couponId] = { shop_id: shopId, coupon_receive: false, coupon_num: 0, coupon_id: couponId, coupon_money: item.d, coupon_money_start: parseFloat(item.c), coupon_start: item.s.split(" ")[0], coupon_end: item.l.split(" ")[0], coupon_common: item.i }; } }); return couponList; } else { return null; } }; obj.parseCouponListShop = function (itemId, shopId, response, couponList) { if (response && response.priceVolumes) { response.priceVolumes.forEach(function (item) { var couponId = item.id; var receive = item.status == "received"; if (couponList.hasOwnProperty(couponId)) { couponList[couponId].coupon_receive = receive; couponList[couponId].coupon_num = item.receivedAmount; } else { var couponMoneyStart = item.condition.replace("满", "").split("减")[0]; var couponStart = item.timeRange.split("-")[0]; var couponEnd = item.timeRange.split("-")[1]; couponList[couponId] = { shop_id: shopId, coupon_receive: receive, coupon_num: item.receivedAmount, coupon_id: couponId, coupon_money: parseFloat(item.price).toFixed(2), coupon_money_start: parseFloat(couponMoneyStart).toFixed(2), coupon_start: couponStart, coupon_end: couponEnd, coupon_common: -1 }; } }); } return couponList; }; obj.matchItemUrl = function (url) { var site = obj.matchSite(url); var itemId = runtime.getUrlParam("id"); if (site == constant.site.taobao) { if (itemId) { return "https://item.taobao.com/item.htm?id=" + itemId; } else { return url; } } if (site == constant.site.yanxuan) { if (itemId) { return "http://you.163.com/item/detail?id=" + itemId; } else { return url; } } // 去除参数和哈希 url = url.split("?")[0]; url = url.split("#")[0]; if (site == constant.site.guomei) { url = url.replace("https", "http"); return url; } if (site == constant.site.vip) { url = url.replace("https", "http"); url = url.replace("detail.vip.com", "www.vip.com"); return url; } return url; }; obj.matchSite = function (url) { // 淘宝 if (url.indexOf("//item.taobao.com/item.htm") > 0 || url.indexOf("//detail.tmall.com/item.htm") > 0 || url.indexOf("//chaoshi.detail.tmall.com/item.htm") > 0 || url.indexOf("//detail.tmall.hk/hk/item.htm") > 0 || url.indexOf("//detail.liangxinyao.com/item.htm") > 0 || url.indexOf("//detail.yao.95095.com/item.htm") > 0) { return constant.site.taobao; } // 京东 if (url.indexOf("item.jd.com") > 0 || url.indexOf("item.jd.hk") > 0) { return constant.site.jd; } // 考拉 if (url.indexOf("goods.kaola.com") > 0) { return constant.site.kaola; } // 严选 if (url.indexOf("you.163.com/item") > 0) { return constant.site.yanxuan; } // 一号店 if (url.indexOf("item.yhd.com") > 0) { return constant.site.yhd; } // 苏宁 if (url.indexOf("product.suning.com") > 0) { return constant.site.suning; } // 亚马逊 if (url.indexOf("www.amazon.cn/dp") > 0 || url.indexOf("www.amazon.cn/gp") > 0) { return constant.site.amazon; } // 当当 if (url.indexOf("product.dangdang.com") > 0) { return constant.site.dangdang; } // 国美 if (url.indexOf("item.gome.com.cn") > 0) { return constant.site.guomei; } // 唯品会 if (url.indexOf("detail.vip.com") > 0) { return constant.site.vip; } // 插件主页 if (url.indexOf("tb.newday.me") > 0) { return constant.site.newday; } return null; }; obj.getAppendHtml = function () { return `

`; }; return obj; }); container.define("app_search_taobao", ["runtime", "option"], function (runtime, option) { var obj = {}; obj.matchSelectorList = function () { var url = runtime.getUrl(); var selectorList = []; if (url.indexOf("//s.taobao.com/search") > 0 || url.indexOf("//s.taobao.com/list") > 0) { // 搜索 if (option.isOptionActive(option.constant.taobao_search)) { selectorList.push(".items .item"); } } else if (url.indexOf("//www.taobao.com/markets") > 0) { // 活动 if (option.isOptionActive(option.constant.taobao_other)) { selectorList = obj.matchSelectorListMarkets(); } } else if (url.indexOf("//www.taobao.com") > 0) { // 首页 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".tbh-hotsale .item"); } } else if (url.indexOf("//neiyi.taobao.com") > 0) { // 内衣 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".item-list li"); } } else if (url.indexOf("//qiang.taobao.com") > 0) { // 淘抢购 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".qg-limit-list .qg-item"); } } else if (url.indexOf("//ju.taobao.com") > 0) { // 聚划算 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".ju-wrapper li"); } } else if (url.indexOf("//mei.taobao.com") > 0) { // 美妆 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".item-list .item-box li"); selectorList.push(".n-mei-category .J_pannel li"); selectorList.push(".J_dynamic .float-box"); selectorList.push(".item-list .J_ItemHover"); selectorList.push(".ju-box li"); selectorList.push(".spu-item .spu-img"); } } else if (url.indexOf("//g.taobao.com") > 0) { // 全球购 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".items .item"); } } else if (url.indexOf("//pei.taobao.com") > 0) { // 配件 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".module-wrap .item-box"); } } else if (url.indexOf("//wujin.taobao.com") > 0) { // 五金 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".module-wrap .item-show"); } } else { // 店铺 if (option.isOptionActive(option.constant.taobao_shop)) { selectorList.push("#J_ShopSearchResult .item"); } } return selectorList; }; // 市场 obj.matchSelectorListMarkets = function () { var url = runtime.getUrl(); var selectorList = []; if (url.indexOf("//www.taobao.com/markets/nvzhuang/") > 0) { // 女装 selectorList.push(".item-box li"); } else if (url.indexOf("//www.taobao.com/markets/nanzhuang/") > 0) { // 男装 selectorList.push(".module-wrap .shop_list"); } else if (url.indexOf("//www.taobao.com/markets/xie/") > 0) { // 鞋靴 selectorList.push(".item-box li"); } else if (url.indexOf("//www.taobao.com/markets/xiangbao/") > 0) { // 箱包 selectorList.push(".item-box li"); } else if (url.indexOf("//www.taobao.com/markets/qbb/") > 0) { // 亲宝贝 selectorList.push(".brand-items .brand-item"); } else if (url.indexOf("//www.taobao.com/markets/3c/") > 0) { // 电场 selectorList.push(".parttwo-ul li"); selectorList.push(".pro-ul li"); } else if (url.indexOf("//www.taobao.com/markets/amusement/") > 0) { // 乐器 selectorList.push(".item-wrap .arrival-item"); selectorList.push(".pz-list .pz-li"); } else if (url.indexOf("//www.taobao.com/markets/acg/") > 0) { // 动漫 selectorList.push(".item-pannel li"); } else if (url.indexOf("//www.taobao.com/markets/bangong/") > 0) { // 办公 selectorList.push(".module-wrap .qiang-item"); selectorList.push(".module-wrap .item-show"); } else if (url.indexOf("//www.taobao.com/markets/dingzhi/") > 0) { // 定制 selectorList.push(".item-wrap .arrival-item"); selectorList.push(".pz-list .pz-li"); } else if (url.indexOf("//www.taobao.com/markets/wujin/") > 0) { // 五金 selectorList.push(".module-wrap .item-show"); } else if (url.indexOf("//www.taobao.com/markets/promotion/") > 0) { // 家庭保障 selectorList.push(".module-wrap .item"); } else { selectorList.push(".module-wrap .item"); selectorList.push(".module-wrap .shop_list"); selectorList.push(".module-wrap .item-show"); selectorList.push(".item-box li"); selectorList.push(".item-wrap .arrival-item"); selectorList.push(".brand-items .brand-item"); } return selectorList; }; return obj; }); container.define("app_search_tmall", ["runtime", "option"], function (runtime, option) { var obj = {}; obj.matchSelectorList = function () { var url = runtime.getUrl(); var selectorList = []; if (url.indexOf("//list.tmall.com/search_product.htm") > 0) { // 搜索 if (option.isOptionActive(option.constant.taobao_search)) { selectorList.push(".product"); selectorList.push(".chaoshi-recommend-list .chaoshi-recommend-item"); } } else if (url.indexOf("//www.tmall.com/wow/") > 0) { if (option.isOptionActive(option.constant.taobao_other)) { selectorList = obj.matchSelectorListWow(); } } else if (url.indexOf("//pages.tmall.com") > 0 || url.indexOf("//618.tmall.com") > 0 || url.indexOf("//1111.tmall.com") > 0) { if (option.isOptionActive(option.constant.taobao_other)) { selectorList = obj.matchSelectorListPages(); } } else if (url.indexOf("//www.tmall.com") > 0) { // 首页 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".middle-column-con .one-grid-price"); selectorList.push(".wonderful-line .wonderful-item"); } } else if (url.indexOf("//import.tmall.com") > 0) { // 天猫国际 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .item"); } } else if (url.indexOf("//chaoshi.tmall.com") > 0) { // 天猫超市 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".list .j_ItemInfo"); } } else if (url.indexOf("//3c.tmall.com") > 0) { // 天猫电器城 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .item"); selectorList.push(".itemlist .itemlist-mod"); selectorList.push(".floor-recommand .item"); } } else if (url.indexOf("//miao.tmall.com") > 0) { // 天猫鲜生 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .j_ItemContainer li"); } } else if (url.indexOf("//yao.tmall.com") > 0) { // 天猫医药馆 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".zebra-yao-indexItem li"); selectorList.push(".yao-qiangCon li"); } } else if (url.indexOf("//wt.tmall.com") > 0) { // 天猫营业厅 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".J_ItemListWrap li"); } } else if (url.indexOf("//suning.tmall.com") > 0) { // 苏宁易购 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".J_TModule .itemarea"); selectorList.push(".J_TModule .tb-module .jdb"); selectorList.push("#J_ShopSearchResult .item"); } } else if (url.indexOf("//good.tmall.com") > 0) { // 天猫心选 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".J_TModule .item"); } } else if (url.indexOf("//zhineng.tmall.com") > 0) { // 天猫精灵智能 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .item"); } } else if (url.indexOf("//nvzhuang.tmall.com") > 0) { // 天猫女装 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .w-lev2-lit"); } } else if (url.indexOf("//nvxie.tmall.com") > 0) { // 天猫女鞋 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".fushi-special-extra a"); } } else if (url.indexOf("//bag.tmall.com") > 0) { // 天猫箱包 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .good"); } } else if (url.indexOf("//watch.tmall.com") > 0) { // 天猫腕表 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .item"); selectorList.push(".mui-zebra-module li"); } } else if (url.indexOf("//dai.tmall.com") > 0) { // 天猫珠宝饰品 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .good"); } } else if (url.indexOf("//shouji.tmall.com") > 0) { // 天猫手机 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .mod-g"); } } else if (url.indexOf("//baby.tmall.com") > 0) { // 天猫母婴 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .fl-camps"); } } else if (url.indexOf("//food.tmall.com") > 0) { // 天猫零食 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .item_s_cpa"); selectorList.push(".mui-zebra-module .item_s_cpb"); } } else if (url.indexOf("//jia.tmall.com") > 0) { // 天猫家装 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".item-panel .item"); } } else if (url.indexOf("//car.tmall.com") > 0) { // 天猫汽车 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .col"); } } else if (url.indexOf("//book.tmall.com") > 0) { // 天猫图书 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .product a"); } } else if (url.indexOf("//new3c.tmall.com") > 0) { // 天猫新首发 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".xpkw-container .xpkw-item"); } } else if (url.indexOf("//ku.tmall.com") > 0) { // 酷玩街 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".new-recommend-content .new-recommend-block"); selectorList.push(".all-goods .goods_block"); } } else if (url.indexOf("//fenqi.tmall.com") > 0) { // 花呗分期 if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .mod-g"); } } else if (url.indexOf("//content.tmall.com") > 0) { if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module li"); selectorList.push(".mui-zebra-module .juitem"); } } else { // 店铺 if (option.isOptionActive(option.constant.taobao_shop)) { selectorList.push("#J_ShopSearchResult .item"); } } return selectorList; }; obj.matchSelectorListWow = function () { var url = runtime.getUrl(); var selectorList = []; if (url.indexOf("//www.tmall.com/wow/chaoshi/") > 0) { selectorList.push(".mui-chaoshi-item-column"); } else if (url.indexOf("//www.tmall.com/wow/fushi/") > 0) { selectorList.push(".mui-zebra-module li"); selectorList.push(".popular-list .popular-item"); } else { selectorList.push(".mui-zebra-module li"); selectorList.push(".mui-zebra-module .item"); selectorList.push(".popular-list .popular-item"); } return selectorList; }; obj.matchSelectorListPages = function () { var url = runtime.getUrl(); var selectorList = []; if (url.indexOf("//pages.tmall.com/wow/import") > 0) { selectorList.push(".cell-square"); selectorList.push(".gwtg-col-item"); } else if (url.indexOf("//pages.tmall.com/wow/chaoshi/") > 0) { selectorList.push(".mui-chaoshi-item-column"); } else { selectorList.push(".mui-zebra-module li"); selectorList.push(".mui-zebra-module .item-link"); selectorList.push(".mui-zebra-module .hot-item"); selectorList.push(".zebra-recommand-item-container .wrapper"); } return selectorList; }; return obj; }); container.define("app_search_tmall_hk", ["runtime", "option"], function (runtime, option) { var obj = {}; obj.matchSelectorList = function () { var url = runtime.getUrl(); var selectorList = []; if (url.indexOf("//list.tmall.hk/search_product.htm") > 0) { if (option.isOptionActive(option.constant.taobao_search)) { selectorList.push("#J_ItemList .product"); } } else if (url.indexOf("//www.tmall.hk") > 0) { if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".item-panel .item"); selectorList.push(".mui-zebra-module .import-shangou-itemcell"); } } else { if (option.isOptionActive(option.constant.taobao_shop)) { selectorList.push("#J_ShopSearchResult .item"); } } return selectorList; }; return obj; }); container.define("app_search", ["runtime", "option", "api", "$"], function (runtime, option, api, $, require) { var obj = {}; obj.run = function () { if (option.isOptionActive(option.constant.taobao_search)) { var url = runtime.getUrl(); var selectorList = []; if (url.indexOf("taobao.com") > 0) { selectorList = require("app_search_taobao").matchSelectorList(); } else if (url.indexOf("tmall.com") > 0) { selectorList = require("app_search_tmall").matchSelectorList(); } else if (url.indexOf("tmall.hk") > 0) { selectorList = require("app_search_tmall_hk").matchSelectorList(); } else if (url.indexOf("//maiyao.liangxinyao.com/shop") > 0 || url.indexOf("//maiyao.liangxinyao.com/category") > 0) { if (option.isOptionActive(option.constant.taobao_shop)) { selectorList.push("#J_ShopSearchResult .item"); } } else if (url.indexOf("//www.liangxinyao.com") > 0 || url.indexOf("//maiyao.liangxinyao.com") > 0) { if (option.isOptionActive(option.constant.taobao_other)) { selectorList.push(".mui-zebra-module .item"); selectorList.push(".zebra-ziying-qianggou li"); } } else { if (option.isOptionActive(option.constant.taobao_shop)) { selectorList.push("#J_ShopSearchResult .item"); } } if (selectorList && selectorList.length > 0) { obj.initSearchHtml(selectorList); obj.initSearchEvent(); obj.basicQuery(); } } }; obj.initSearchHtml = function (selectorList) { setInterval(function () { selectorList.forEach(function (selector) { obj.initSearchItemSelector(selector); }); }, 3000); }; obj.initSearchEvent = function () { $(document).on("click", ".tb-cool-box-area", function () { var $this = $(this); if ($this.hasClass("tb-cool-box-wait")) { obj.basicQueryItem(this); } else if ($this.hasClass("tb-cool-box-info-translucent")) { $this.removeClass("tb-cool-box-info-translucent"); } else { $this.addClass("tb-cool-box-info-translucent"); } }); }; obj.basicQuery = function () { setInterval(function () { $(".tb-cool-box-wait").each(function () { obj.basicQueryItem(this); }); }, 3000); }; obj.initSearchItemSelector = function (selector) { $(selector).each(function () { obj.initSearchItem(this); }); }; obj.initSearchItem = function (selector) { var $this = $(selector); if ($this.hasClass("tb-cool-box-already")) { return; } else { $this.addClass("tb-cool-box-already") } var nid = $this.attr("data-id"); if (!obj.isVailidItemId(nid)) { nid = $this.attr("data-itemid"); } if (!obj.isVailidItemId(nid)) { if ($this.attr("href")) { nid = location.protocol + $this.attr("href"); } else { var $a = $this.find("a"); if (!$a.length) { return; } nid = $a.attr("data-nid"); if (!obj.isVailidItemId(nid)) { if ($a.hasClass("j_ReceiveCoupon") && $a.length > 1) { nid = location.protocol + $($a[1]).attr("href"); } else { nid = location.protocol + $a.attr("href"); } } } } if (obj.isValidNid(nid)) { obj.appenBasicQueryHtml($this, nid); } }; obj.appenBasicQueryHtml = function (selector, nid) { selector.append('
待查询
'); }; obj.basicQueryItem = function (selector) { var $this = $(selector); $this.removeClass("tb-cool-box-wait"); var nid = $this.attr("data-nid"); api.basicQuery(nid, function (response) { if (response && response.code == 1) { var data = response.data; if (data.coupon_money > 0) { obj.showBasicQueryFind($this, data.item_id, data.item_price_buy, data.coupon_money); } else { obj.showBasicQueryEmpty($this); } } else { obj.showBasicQueryEmpty($this); } }); }; obj.showBasicQueryFind = function (selector, itemId, itemPriceBuy, couponMoney) { selector.html('券后 ' + itemPriceBuy + '(减' + couponMoney + '元)'); }; obj.showBasicQueryEmpty = function (selector) { selector.addClass("tb-cool-box-info-translucent"); selector.html('暂无优惠'); }; obj.isVailidItemId = function (itemId) { if (!itemId) { return false; } var itemIdInt = parseInt(itemId); if (itemIdInt == itemId && itemId > 10000) { return true; } else { return false; } }; obj.isValidNid = function (nid) { if (!nid) { return false; } else if (nid.indexOf('http') >= 0) { if (obj.isDetailPageTaoBao(nid) || nid.indexOf("//detail.ju.taobao.com/home.htm") > 0) { return true; } else { return false; } } else { return true; } }; obj.isDetailPageTaoBao = function (url) { if (url.indexOf("//item.taobao.com/item.htm") > 0 || url.indexOf("//detail.tmall.com/item.htm") > 0 || url.indexOf("//chaoshi.detail.tmall.com/item.htm") > 0 || url.indexOf("//detail.tmall.hk/hk/item.htm") > 0 || url.indexOf("//detail.liangxinyao.com/item.htm") > 0 || url.indexOf("//detail.yao.95095.com/item.htm") > 0) { return true; } else { return false; } }; return obj; }); container.define("app_option", ["option", "env", "api", "meta", "$", "vue"], function (option, env, api, meta, $, vue) { var obj = {}; obj.run = function () { if (meta.existMeta("option")) { obj.initOptionPage(); return true; } else if (meta.existMeta("act")) { obj.initActPage(); return true; } else { return false; } }; obj.initOptionPage = function () { new vue({ el: "#container", data: { info: env.getInfo(), option: option.getOption() }, mounted: function () { this.initCheckBox(); }, watch: { option: function (value) { option.setOption(value); api.logOption(value); } }, methods: { initCheckBox: function () { $("body").addClass("init-checkbox-wait"); } } }); }; obj.initActPage = function () { $("#dev-addon-info").val(JSON.stringify(env.getInfo())); }; return obj; }); container.define("app", ["runtime", "meta", "logger", "core"], function (runtime, meta, logger, core, require) { var obj = {}; obj.run = function () { var metaName = "status"; if (meta.existMeta(metaName)) { logger.warn("setup already"); } else { logger.info("setup success"); // 当前链接 var url = runtime.getUrl(); logger.info(url); // 添加meta meta.appendMeta(metaName); // 添加style core.appendStyle(); // 运行应用 obj.runApp(); } }; obj.runApp = function () { var appList = [ "app_detail", "app_option", "app_search" ]; for (var i in appList) { if (require(appList[i]).run() == true) { break; } } }; return obj; }); // 注册模块 container.register("$", window.$); container.register("snap", window.Snap); container.register("echarts", window.echarts); container.register("vue", window.Vue); // 执行操作 container.use(["core", "app", "logger"], function (core, app, logger) { // 日志级别 logger.setLevel(logger.constant.info); core.ready(function () { app.run(); }); }); })();