This is woomarks, an app that let's you save links in your browser storage, no account needed.
Well, yeah, but it's not as shiny and colorful and browsable. This design is inspired by Pocket's UI, which was very good for showing a list of articles to read later. Native bookmarking feels more utilitarian, suited for recurrent links, woomarks is more suited for read later links.
A bookmarklet is a small program stored as a bookmark in your web browser. When you click the bookmark on your browser bar, the program runs on the webpage you're viewing. woomarks' bookmarklet does 3 things:
OPTION 1. The easiest way, drag this link >>> add woomark <<< to your bookmarks bar.
OPTION 2. Create a new bookmark with "add woomark" as Name and past the next code as URL.
javascript:(function(){
const url = encodeURIComponent(window.location.href);
const title = encodeURIComponent(document.title);
window.open(`http://woomarks.com/?title=${title}&url=${url}`, '_blank');
})();
In Google Chrome
Cmd+D
.Ctrl+Shift+B
(Windows) or Cmd+Shift+B
(Mac) if
it's hidden.
If your browser blocks pasting code starting with javascript:
, create a regular bookmark first,
then edit the URL manually.
I had all my bookmarks in Pocket and it's shutting down. Same thing happened to del.icio.us. So I decided to keep the web cool and decentralized and make this little thing. Probably this site will disappear too, but the code is open source and you can use it on your own website forever.
Yes, this is free. I won't put ads, but maybe a link or two to my other projects.
There's no catch, you are not the product. This is just an html page and I don't have backend services or databases as everything is handled by your browser. It's prety cheap to run for now. I could drop a donations link in the future.
Yes! You can get the code here and install it on your own website if you have one. If you do it and put your links public, feel free to add it to the BOOKMARKS FEDERATION
No. They are saved as text in your browser storage. This is just for saving articles and interesting links, not for anything that requires some security.
No.
Nothing. There's no roadmap, no business plan, no enshitification. This is all you get.
Yours truly, Roberto Martinez. I write code as job and I have been doing side projects on the web since 2003.