Here is a simple script that moves the BIN price to the Starting Bid filed and vice versa.
Disclaimer:
- You might want to test this script with one single listing first.
- There’s no undo function.
// Switch BIN <> SB
function run(){
for (const listing of selectedListings) {
if (listing.useBuyItNowPrice && !listing.useStartingBid) {
listing.useStartingBid = 1;
listing.startingBid = listing.buyItNowPrice;
listing.useBuyItNowPrice = 0;
} else if (!listing.useBuyItNowPrice && listing.useStartingBid) {
listing.useBuyItNowPrice = 1;
listing.buyItNowPrice = listing.startingBid;
listing.useStartingBid = 0;
}
}
}
To use this script open GarageSale’s script editor, click the + button and paste the script. Select one or more listings in GarageSale’s main window, then click the “Run” button in script editor.