If your cookies in same format as BAS, you just read it from file to variable and go Network-load cookies-set cookies for browser. If format of your cookies not compatible with BAS, compare and convert all your cookies in right format
open website
execute javascript on the page to delete all cookies for the page
function deleteAllCookies() {
var cookies = document.cookie.split(";");
for (var i = 0; i < cookies.length; i++) {
var cookie = cookies[i];
var eqPos = cookie.indexOf("=");
var name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/";
}
}
Hey guy's newbie here.. i've really enjoyed using BAS in free mode. I'd like to buy premium package. But i want to know, if their is a away i can host my BAS project and run it from my website ?
BAS script is an application. To run it from the site, you yourself must realize this opportunity