Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add a bookmark that is only javascript, not a URL

I'm thinking that the reason I can't do this is because it might be a huge security hole, but here goes...

I want to have a bookmark on my browser (FF3, preferably) that is only a snippet of javascript code. It would merely construct a URL based on the current date and then do a window.location = on that URL.

I know that I could make a page and keep it on my local machine and just refer to it that way, but I was just wondering if you could bypass that step and actually have the "location" of the bookmark really just be javascript. I could have sworn that this was possible years ago, but I can't find anything that tells me either way now.

like image 533
Matt Dawdy Avatar asked Aug 12 '08 18:08

Matt Dawdy


People also ask

How do I save a bookmark as a code?

Select code snippet and click on the extension icon or right click and select "Save code to Bookmarks. dev". If you can't use browser extensions visit our bookmarklets page (snippets) at www. bookmarks.


1 Answers

What you want is a bookmarklet they are easy to create and should work in most major browsers.

Edit: Stack overflow seems not to allow creating bookmarklets in the context of the site, basically you can create a new bookmark and type the following in the location field

javascript:window.location='http://www.google.com/search?q='+Date()

to get a bookmarklet that searches google for the current date.

like image 181
Pat Avatar answered Sep 19 '22 06:09

Pat