>Sorry it is a Tampermonkey script, which has to be installed. TM is very hoary though, so likely there is a FF version or someone has filled the Gap which started with GreaseMonkey (i use Chrome mostly and have yet to look for a FF version). Once that is installed one should be able to just click the "download" button on the Gist.
greg
--
from: skissh <smk...@gmail.com>
to: Google Bookmarks <google-bookmarks@googlegroups.com>
date: 27 July 2018 at 14:07
>Greg how do I use the js that you posted the link to. I use FF and have a bookmark bar bookmark that has as it's Location something that starts like this:
javascript:(function(){var%20a=window,b=document,c=encodeURIComponent,d=a.open("https://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=
...
Is this a bookmarklet? How do I connect this with your js?
--
You received this message because you are subscribed to the Google Groups "Google Bookmarks" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-bookmarks+unsubscribe@googlegroups.com.
To post to this group, send email to google-bookmarks@googlegroups.com.
Visit this group at https://groups.google.com/group/google-bookmarks.
For more options, visit https://groups.google.com/d/optout.
@greg
Thanks again for your work on autocompletion.
Today I decided to take a further back-up of my Google Bookmarks using "https://www.google.com/bookmarks/?output=xml&num=10000" - but thinking that I might now have more than 10,000 bookmarks I set num=100000.
The returned XML file had exactly 10,000 <bookmark> elements in it. (A previous backup of mid-2018 had around 8,600).
Setting num=100 also returned the same file with 10,000 <bookmark> elements. So the ‘num=’ element of the query is ignored, and it returns all the bookmarks currently held up to 10,000.
The HTML file from the "Export Bookmarks" link on www.google.com/bookmarks also had exactly 10,000 underlying bookmarks in it, but the HTML format is grouped round individual labels and URLs with multiple labels appear multiple times so there were something like 17,000 URLs in the file returned, but after extracting the URLs and doing a sort | uniq | wc -l I found exactly 10,000 unique URLs.
I tried adding a few extra bookmarks and re-running both export functions. Again exactly 10,000 bookmarks were returned - and the 'new' bookmarks were top of the file on the XML file.
I then deleted those extra bookmarks and re-ran both export functions. Now the number of bookmarks was 9,996 and the deleted bookmarks were no longer at the top of the file.
So it appears that, rather than the num= parameter being forced to 10,000, there is instead a hard limit of 10,000 on the number of bookmarks stored. Once that limit is reached an existing bookmark is deleted each time a new bookmark is added.
It’s not immediately clear how Google Bookmarks selects the existing bookmark to delete – from an initial analysis of bookmarks that have disappeared from the previous backup it is *not* the oldest.