-
-
Save florido/b4cbc9a1da0439adc346575477c2863f to your computer and use it in GitHub Desktop.
Bookmarklet to copy link to Bear.app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Reference // Reference ulysses://x-callback-url/new-sheet?text=document.title sheet&index=2 | |
| // Bookmarklet Maker: https://caiorss.github.io/bookmarklet-maker/ | |
| var url = document.URL; | |
| title = document.title; | |
| text = window.getSelection().toString(); | |
| mdLink = '[' + title + ']' + '(' + url + ')'; | |
| window.location.href = "bear://x-callback-url/" | |
| + "create?text=" | |
| + '%23%23 ' + mdLink | |
| + '%0A' | |
| + "> " + text | |
| + '%0A%0A' | |
| + "&tags=bookmark" | |
| + "&new_window=no" | |
| + "&show_window=no" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment