Any other ideas are welcome. Just ask if what you want is possible.
TODO: Migrate here iamandrewluca/awesome-bookmarklets
Post: https://dev.to/iamandrewluca/bookmarklets-browser-search-engine-2m30
- Generate a password in browser
- Toggle password inputs to text back and forth
- Request picture in picture on first found video that is playing
- Open any URL with host as localhost:3000
- Random table flip text emoji
- Random Shrug text emoji
- Will speak any select text from page
- Outline headings out of order in a page
- Enable page editing
- Will search and mark duplicated IDs on a page
- Redirects to njt.vercel.app but with GitHub as default
- Google Meet, open your video Picture in Picture mode
- Add a script to page
- Export browser bookmarks, import them in Notion as a database
Starter template
javascript: (async (s) => {
'use strict';
// Was not used as search engine
if (s === globalThis.atob('JXM=')) s = undefined;
/**
* More bookmarklets at
* https://gist.github.com/iamandrewluca/61feacf07bc4f2f50e70f986c2e9b2d2
* When used as a browser search engine `s` will be what user typed in address bar
* Post: https://dev.to/iamandrewluca/bookmarklets-browser-search-engine-2m30
*/
// Use this to get input
// if (!s) s = globalThis.prompt();
/* Your code goes here */
globalThis.console.log(s);
})(`%s`)