您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a button to view items on backpack.tf
// ==UserScript== // @name Backpack.tf Button // @version v1 // @description Adds a button to view items on backpack.tf // @author LilLovebird // @match https://loadout.tf/ // @icon https://www.google.com/s2/favicons?sz=64&domain=loadout.tf // @namespace https://greasyfork.org/users/1468615 // ==/UserScript== (function() { 'use strict'; Element.prototype._attachShadow = Element.prototype.attachShadow; Element.prototype.attachShadow = function () { return this._attachShadow( { mode: "open" } ); }; setTimeout(function() { setInterval(function () { document.querySelectorAll("div")[1].shadowRoot.querySelector("div").shadowRoot.querySelector("div").shadowRoot.querySelectorAll("div.item-manager-item-detail").forEach((element) => { if (!element.innerHTML.includes("backpack.tf")) { let button = document.createElement("a"); button.className = "item-manager-item-detail-backpack-link capitalize"; button.href = "https://next.backpack.tf/stats?item=" + element.querySelector("div.item-manager-item-detail-title").textContent; button.target = "_blank"; button.textContent = "Backpack.tf"; element.insertBefore(button, element.lastElementChild); } }); }, 0); }, 1000); })();