Guest User

RemindMeBot Bookmarklet

a guest
Sep 23rd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var subject = prompt('(Optional) What is the subject?', 'Reminder');
  2. var time = prompt('Will default to 1 day if left blank.\nRefer to possible options by opening the link below.\nEnter the time:', 'https://goo.gl/bLcV3G');
  3. var optMsg = prompt('OPTIONAL (click OK to skip)\nEnter message/notes:');
  4. var message = '[' + location.href + ']' + '\n\nRemindMe! ' + time;
  5.  
  6. if (optMsg == "") {
  7.     var newLink = 'https://www.reddit.com/message/compose/?to=RemindMeBot&subject=' + encodeURIComponent(subject) + '&message=' + encodeURIComponent(message);
  8. } else {
  9.     var newLink = 'https://www.reddit.com/message/compose/?to=RemindMeBot&subject=' + encodeURIComponent(subject) + '&message=' + encodeURIComponent(message) + ' %22' + optMsg + '%22';
  10. }
  11.  
  12. if (time != null) {
  13.     location.href = newLink;
  14. }
Add Comment
Please, Sign In to add comment