您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
See instantly if the product really comes from Amazon or from a reseller
当前为
// ==UserScript== // @name Amazon - Highlight resellers // @namespace graphen // @version 1.2.1 // @description See instantly if the product really comes from Amazon or from a reseller // @author Graphen // @include /^https?:\/\/(www|smile)\.amazon\.(cn|in|co\.jp|sg|ae|fr|de|it|nl|es|co\.uk|ca|com(\.(mx|au|br|tr))?)\/.*(dp|gp\/(product|video)|exec\/obidos\/ASIN|o\/ASIN)\/.*$/ // @grant none // @noframes // @icon https://www.amazon.com/favicon.ico // ==/UserScript== /* jshint esversion: 6 */ (function (doc) { 'use strict'; const detectionValidList = [ //British English "Dispatched from and sold by Amazon.", "Dispatched from and sold by Amazon EU Sarl.", //Canadian English "Ships from and sold by Amazon.ca.", //American English "Ships from and sold by Amazon.com Services LLC.", //Australian English "Ships from and sold by Amazon US.", //United Arab Emirates English "Ships from and sold by Amazon.ae.", //German "Verkauf und Versand durch Amazon.", "Verkauf und Versand durch Amazon EU Sarl.", //Spanish "Vendido y enviado por Amazon.", "Vendido y enviado por Amazon EU Sarl.", //French "Expédié et vendu par Amazon.", "Expédié et vendu par Amazon EU Sarl.", //Italian "Venduto e spedito da Amazon.", "Venduto e spedito da Amazon EU Sarl.", //Dutch "Verzonden en verkocht door Amazon.", "Verzonden en verkocht door Amazon EU Sarl.", //Mexican / Spanish "Vendido y enviado por Amazon México.", //Brazilian / Portuguese "Enviado e vendido por Amazon.com.br.", //Japanese "この商品は、Amazon.co.jp が販売、発送します。" ]; function highlight() { var merchInfo = doc.getElementById("merchant-info"); if (merchInfo) { console.log("Merchant Info: " + merchInfo.innerText.trim()); if (detectionValidList.includes(merchInfo.innerText.trim())) { merchInfo.style.color = "green"; } else { merchInfo.style.color = "fuchsia"; // Style reseller name and link let body = doc.querySelector('body'); let fontColor = window.getComputedStyle(body).getPropertyValue('color'); merchInfo.firstChild.nextSibling.style.cssText = "color: " + fontColor + " !important;"; } } } highlight(); // Execute again when item variation is selected var buyboxParent = doc.getElementById('desktop_buybox'); if (buyboxParent) { var MO = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { mutation.addedNodes.forEach(function(nodeElement) { if (nodeElement.id === "buybox") { highlight(); } }); }); }); MO.observe(buyboxParent, { childList: true, subtree: true }); } })(document);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址