// ==UserScript== // @name Shopee shopping cart display liked products // @name:zh-Han 蝦皮購物車顯示喜愛的商品 // @name:zh-TW 蝦皮購物車顯示喜愛的商品 // @name:zh-CN 虾皮购物车显示喜爱的商品 // @description Products that have been liked are displayed below the Shopee shopping cart. // @description:zh-Han 在蝦皮購物車下方顯示已按過喜歡的商品。 // @description:zh-TW 在蝦皮購物車下方顯示已按過喜歡的商品。 // @description:zh-CN 在虾皮购物车下方显示已按过喜欢的商品。 // @copyright 2024, HrJasn (https://greasyfork.org/zh-TW/users/142344-jasn-hr) // @license MIT // @icon https://www.google.com/s2/favicons?domain=shopee.tw // @homepageURL https://greasyfork.org/zh-TW/users/142344-jasn-hr // @supportURL https://greasyfork.org/zh-TW/users/142344-jasn-hr // @version 1.2 // @namespace https://greasyfork.org/zh-TW/users/142344-jasn-hr // @grant none // @match http*://shopee.tw // @match http*://shopee.tw/* // @downloadURL https://update.greasyfork.icu/scripts/497922/Shopee%20shopping%20cart%20display%20liked%20products.user.js // @updateURL https://update.greasyfork.icu/scripts/497922/Shopee%20shopping%20cart%20display%20liked%20products.meta.js // ==/UserScript== (async () => { async function waitForElm(selector) { return new Promise(resolve => { if (document.querySelector(selector)) { return resolve(document.querySelector(selector)); }; const observer = new MutationObserver(mutations => { if (document.querySelector(selector)) { observer.disconnect(); resolve(document.querySelector(selector)); } }); observer.observe(document.body, { childList: true, subtree: true }); }); }; const adNde = await waitForElm(".shopee-header-section"); console.log(adNde); if (adNde) { let userLang = navigator.userLanguage || navigator.language || navigator.browserLanguage || navigator.systemLanguage; let userTimezone = Intl.DateTimeFormat().resolvedOptions().timeZone; let liked_count = await fetch("https://shopee.tw/api/v4/pages/get_like_count", { "method": "GET" }).then((response) => { return response.json(); }).then((json) => { return json; }); let LikedItemsMaxCount = liked_count.data.total_count || liked_count.data.distribution.product_liked_count || 20; const liked_items = await fetch("https://shopee.tw/api/v4/pages/get_liked_items?&cursor=0&limit=" + LikedItemsMaxCount.toString() + "&offset=0&status=0", { "method": "GET" }).then(response=>response.json()).then(data=>{ console.log(data); return data }); console.log(liked_items); if ( (liked_items) && (liked_items.data) ) { const liked_items_data_items = liked_items.data.items.reverse(); for (let lin = 0; lin < liked_items_data_items.length; lin++) { let lio = liked_items.data.items[lin]; let NewDiv = await AddLikedItem(lio); console.log(NewDiv); }; async function AddLikedItem(likeitemJson){ let itemname = likeitemJson.name; let contenthref = "/" + itemname + "-i." + likeitemJson.shopid + "." + likeitemJson.itemid; let imgid = likeitemJson.image; let itemprice = likeitemJson.price / 100000; const liketitle = [...document.querySelectorAll('div.shopee-header-section')].find((e)=>{return e.innerText.match(/喜歡|like/)}); const likelist = liketitle.nextSibling; let NewDiv = likelist.insertBefore(document.createElement("div"), likelist.firstChild); NewDiv.classList.add("N_YeYe"); NewDiv.style.transition = 'all 0.2s'; NewDiv.insertAdjacentHTML('afterbegin', `