您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
In order to have potentially all your Listia listings open on one page, you can add your profile name at the end (or really anywhere including
当前为
// ==UserScript== // @name Listia Multi-Listing Edit Screen Opener // @namespace http://tampermonkey.net/ // @version 0.1.1 // @description In order to have potentially all your Listia listings open on one page, you can add your profile name at the end (or really anywhere including // @description the title) of each listing description and then do a search for that screen name. In my experience that process won't retrieve most of your gift // @description card and all of your Bitcoin category listings if you have them, but will retrieve all listings from other categories. You can then order the // @description listings by highest price and run this script, substituting your profile name for 'myprofilename' in the '//@match' line just below. This script // @description will then open all your listings (or at least the ones where you added your profile name to the listing descriptions, it easy to overlook some I // @description have found) in edit mode. If you are also running the "Listia Mass Price Updater" Tampermonkey script, see: http://bit.ly/2A9y3Oo, you can also // @description automatically update your prices by multiplying by a number you have pre-chosen. That way if for instance XNK falls 20% in value overnight and // @description you need,to multiply all your prices by 1.25, you can do that for 100 listing maybe in less than 5 minutes and potentially save you money from // @description unwanted sales at now unrealistic prices. Report any bugs through the Geasy Fork System or PM me on Listia at username socrtwo22, http://bit.ly/2BpwQEx. // @author Paul D Pruitt // @match https://www.listia.com/search?q=myprofilename&location_id=111&sort=highprice // ==/UserScript== (function OpenHrefsInNewWindow() { 'use strict'; var linksToOpen = document.getElementsByClassName("title"); for (var J = 5, numLinks = linksToOpen.length; J < numLinks; ++J) { var currentLink = "\"" + linksToOpen[J].href + "\""; var linksToOpenStringEnd = currentLink.substring(31,40); var editAddedToLink = "http://www.listia.com/auction/edit/" + linksToOpenStringEnd; window.open(editAddedToLink); }} )();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址