Here is my attempt at a bookmarklet to calculate a deletion date based on you entering the expire date (I couldn't find anything to do this easily and I don't trust feeding a domain to online services):
make a new favorite place or bookmark in your browser and copy the above to the url line.
(note that it says "php" above but this is javascript, I just have to use the vbcode to get proper formatting)
When you click on it, just enter the year month and day as asked and it will give you the 36 day delete and 81 day delete range.
Feel free to try to improve this!
(maybe the forum mods can make the above into a true link in this thread so it will be as simple as right clicking, unfortunately I cannot due to security features on the board)
I am working on a way to just highlight a date in any WHOIS output to do the above without entering the date but it may take awhile.
PHP:
javascript:var%20one_day=1000*60*60*24,expdate=new%20Date(prompt("year",""),%20prompt("month","")-1,prompt("day",""));
alert("deleted%20between\n"+"36%20days:%20"+new%20Date(expdate.getTime()
+(36*one_day))+"\n81%20days:%20"+new%20Date(expdate.getTime()+(81*one_day)));
(note that it says "php" above but this is javascript, I just have to use the vbcode to get proper formatting)
When you click on it, just enter the year month and day as asked and it will give you the 36 day delete and 81 day delete range.
Feel free to try to improve this!
(maybe the forum mods can make the above into a true link in this thread so it will be as simple as right clicking, unfortunately I cannot due to security features on the board)
I am working on a way to just highlight a date in any WHOIS output to do the above without entering the date but it may take awhile.
Last edited:















