bookmarks

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 ...

IE 7+ Favorites

Is it possible to develop a plug-in for Internet Explorer that can replace the existing favorites functionality? ...

Read Firefox 3 bookmarks

Firefox 3 stores the bookmarks in a sqlite database. There are several hacked sqlite java libraries available. Is there a way to hack the sqlite database in java(not using libraries) to read bookmarks reliably? Does someone know how the sqlite DB is stored and access programmatically (from java)? ...

A Firefox javascript bookmarking problem

I'm using the following JavaScript code: <script language="JavaScript1.2" type="text/javascript"> function CreateBookmarkLink(title, url) { if (window.sidebar) { window.sidebar.addPanel(title, url,""); } else if( window.external ) { window.external.AddFavorite( url, title); } else if(window.opera && window.print) ...

How can I access the bookmarks toolbar using only shortcuts in Firefox 3

I am not interested in accessing the bookmarks menu or sidebar. The specific goal that I'm trying to accomplish is to be able to easily navigate (using only the keyboard) through the live bookmarks loaded from stack overflow by means of a feed reader and located on my bookmarks toolbar. Notes: I have found an add-on that supposedly d...

What are your favorite programming bookmarks?

Hi everyone and Merry Christmas! Please share your favorite programming bookmarks. Blogs, newspapers, forums, whatever. Stuff you NEED to read everyday! =) EDITED Suggested one per reply, to clarify voting ...

What are your Rails bookmarks to help you solve problems and learn?

When you're solving a problem in Rails, what websites do you turn to as resources? (... other than StackOverflow!) I'm not looking for links to tools such as IDEs, but rather information resources. One url per answer please to help voting. ...

Firefox Bookmarks SQLite structure

Hi, I am trying to write a Firefox 3 add-on which will enable me to easily re-tag bookmarks. For example I have some bookmarks tagged "development" and some tagged "Development" and I would like a way to easily update all the "delelopment" tags to "Development". Unfortunately I can not find an add-on to do this so I thought I would crea...

Is there a way programmtatically to export firefox bookmarks to and from xbel?

hi, firefox allows end user to export bookmarks to xbel bookmark exchange format. but i would like to programmatically: export some (not all) of the bookmarks and import xbel bookmarks into firefox. preferably using a web language so that i can run the script from web server. Can anyone suggest a solution? ...

How to prevent VS2008 from saving bookmarks?

Hi All, VS2008 automatically saves bookmarks and restores them when I reopen the document. How can I tell it to stop saving them. When I open a doc, I want it without any bookmark, as in previous versions of VS. I went twice through the whole options set but couldn't find anything related to bookmarks. TIA. ...

Google Bookmark Export date format?

I been working on parsing out bookmarks from an export file generated by google bookmarks. This file contains the following date attributes: ADD_DATE="1231721701079000" ADD_DATE="1227217588219000" These are not standard unix style timestamps. Can someone point me in the right direction here? I'll be parsing them using c# if you are fe...

Recover Firefox tabs after accidentally closing the window without saving the session.

I've gradually come to fully rely on Firefox's ability to recover my tabs after any kind of crash. That faith was not entirely ill-founded but what I didn't have a contingency plan for was accidentally closing the Firefox window and saying not to save the session. That just happened when my dad borrowed my laptop to check his email. O...

How to know if url is already bookmarked

I am adding bookmark from code. Now in Firefox if user already added the url as bookmark he should not be able to bookmark it again. How can I do it? For now every time a new bookmark is getting created. ...

iPhone bookmark link add to home screen?

Is it possible to add a link that bookmarks to the home screen? ...

How does AWStats determine that a user has bookmarked your site?

I was just reading that there is a feature in AWStats that can estimate how many users have added your site to their favorites/bookmarks. How does this work considering that AwStats is just a log analyzer? ...

How to set Delphi bookmarks on Vista 64-bit

In Delphi (2007) I'm used to setting a bookmark with CTRL-SHIFT-0,1,2 etc. Since I've upgraded to Vista x64 the above no longer works. I can still set a bookmark with CTRL-K-0,1,2 etc but I'm habituated to the traditional way (plus it's quicker). Does anyone know why it's not working for me? ...

Using JavaScript to change the URL used when a page is bookmarked...

JavaScript doesn't allow you to update window.location without triggering a reload. While I agree with this policy in principle (it shouldn't be possible to visit my website and have JavaScript change the location bar to read www.yourbankingsite.com,) I believe that it should be possible to change www.foo.org/index to www.foo.org/help. ...

PHP - Output Firefox JSON data

Is it possible to output specific JSON data (exported from Firefox bookmarks) using PHP. This is the code which I have so far, it will re-encode the data as Firefox doesn't export it in the correct UTF-8 way. I also remove the trailing , from the end of the file. <?php // Read the file blah blah $hFile = "../uploads/james.json"; $hFile...

Delicious API - All bookmarks for a given website?

Is there a way for me to get at a list of the URLs on my website which people have bookmarked on the delicious.com website? Their documentation appears to make no reference to wildcard searches or anything other than individual URLs. Any suggestions? ...

Read Firefox bookmarks using C#

Using C#, I need to get all Firefox bookmarks for importing them into our database. How can I do this? I'm aware of the SO question, Read FF 3 bookmarks in Java, but the answers there all seem to revolve around Java database drivers, and I'm not sure that some of those answers aren't Java-specific. My primary question is, "How can I re...