// ==UserScript== // @name 沃尔玛查询upc // @namespace http://tampermonkey.net/ // @version 0.2 // @description 在页面显示商品UPC码 // @author Take // @match *://www.walmart.com/ip/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @downloadURL none // ==/UserScript== (function() { var html = document.documentElement.outerHTML; var a = html.indexOf('"upc":"'); var b = html.indexOf('","fetched"'); var upc = html.substring(a+7,b); console.log("upc为:",upc); if(upc!="" && upc.length<=12){ var div = document.createElement("div"); div.innerHTML = "
UPC:"+upc+"
"; document.body.appendChild(div); } })();