// ==UserScript== // @name 沃尔玛查询upc // @namespace http://tampermonkey.net/ // @version 0.1 // @description 一个显示沃尔玛商品UPC的工具! // @author You // @match *://www.walmart.com/ip/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @downloadURL none // ==/UserScript== (function() { var html = document.documentElement.outerHTML; console.log("我的输出",html); var a = html.indexOf('"upc":"'); var b = html.indexOf('","fetched"'); var upc = html.substring(a+7,b); console.log("upc为:",upc); if(upc!=""){ var div = document.createElement("div"); div.innerHTML = "
UPC:"+upc+"
"; document.body.appendChild(div); } })();