Skip to content

Instantly share code, notes, and snippets.

@chrisndeca
chrisndeca / eBay Auction to Google Cal.js
Last active March 4, 2022 10:35
eBay Auction to Google Calendar Scriptable Share Sheet script
//Must be used through the Scriptable Share Sheet Action from the eBay App.
function splitFunc(aString,aDelim,thePos) {
let newArray = aString.split(aDelim)
return newArray[thePos]
}
let argsURL = args.urls[0];
let shortURL = splitFunc(argsURL,"?",0);
let wv = new WebView();