Send Link to Papaly Inbox

Adds a link to the current webpage to your Papaly Inbox

  1. // ==UserScript==
  2. // @name Send Link to Papaly Inbox
  3. // @namespace https://gordon-breuer.de/
  4. // @version 1.0
  5. // @description Adds a link to the current webpage to your Papaly Inbox
  6. // @author Anheledir
  7. // @include http://*/*
  8. // @include https://*/*
  9. // @grant GM_registerMenuCommand
  10. // ==/UserScript==
  11.  
  12. function sendToInbox() {
  13. var e = document.createElement('script');
  14. e.setAttribute('id', 'clipinet-javascript');
  15. e.setAttribute('type', 'text/javascript');
  16. e.setAttribute('charset', 'UTF-8');
  17. e.setAttribute('src', '//papaly.com/items/bookmarklet.js?r=' + Math.floor(Math.random() * 100000));
  18. document.body.appendChild(e);
  19. }
  20.  
  21. (function() {
  22. GM_registerMenuCommand("Send Link to Papaly Inbox", sendToInbox);
  23. })();