TODOIST anywhere for Gmail

Starts Todoist anywhere in gmail

  1. // ==UserScript==
  2. // @name TODOIST anywhere for Gmail
  3. // @author >>YoGuRt<<
  4. // @description Starts Todoist anywhere in gmail
  5. // @include *mail.google.com/mail/u/0/*
  6. // @include *mail.google.com/mail/u/0/?pli=1*
  7. // @grant none
  8. // @version 1.2
  9. // @namespace https://greatest.deepsurf.us/users/2500
  10. // ==/UserScript==
  11.  
  12. window.addEventListener('load', function() {
  13. javascript: (function() { var doc = top.document; if(top.js && top.js.document) doc = top.js.document; var script = doc.createElement('script'); doc.todoist_script = script; script.type = 'text/javascript'; script.src = 'https://todoist.com/anywhere/getJavaScript'; doc.getElementsByTagName('head')[0].appendChild(script); })(); void(0);
  14. }, false);