您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Displays a random superhero name next to the user's given name
// ==UserScript== // @name Superhero alias // @author paladurg@ // @namespace http://tampermonkey.net/ // @version 0.1 // @description Displays a random superhero name next to the user's given name // @include https://phonetool.amazon.com/users/* // @grant GM.xmlHttpRequest // ==/UserScript== try { GM.xmlHttpRequest({ url: 'https://akabab.github.io/superhero-api/api/all.json', method: "GET", headers: {"Accept": "application/json"}, onload: function(response) { var responseList = eval("(" + response.responseText + ")"); var randNum = Math.ceil(Math.random() * Math.floor(563)); var item = responseList[randNum]; var container = document.querySelector(".PersonalInfoName"); var nameForGSearch = item.name.split(" ").join("+"); var googleSearchLink = `https://www.google.com/search?q=${nameForGSearch}+superhero`; var imgLink = `<span style='margin-left: 23px; color:#88292F; font-size:23px'>${item.name}</style> <a href=${googleSearchLink} target="_blank"> <img style="border-radius: 50%; width:50px; height:50px;" src=${item.images.md}> </a>`; container.innerHTML += imgLink; } }); } catch (e) { console.log(`'${GM.info.script.name}' Update the script! Contact paladurg@`, e); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址