Showing posts with label Bookmarklets. Show all posts
Showing posts with label Bookmarklets. Show all posts

Saturday, June 28, 2008

How can I export my bookmarks from Google?

Google Bookmarks FAQ
How can I export my bookmarks from Google?
Easy, just go to this page and you'll download a file called bookmarks.html, that can be imported in your browser. You can also export the bookmarks as a feed, but it won't be very useful unless you're a developer.

Monday, January 14, 2008

Google Bookmarks FAQ

Google Bookmarks FAQ

Bookmarklet
But to add bookmarks there's a very simple bookmarklet that should work on almost any browser. Just drag this to the links toolbar: Google Bookmark You'll also find it at the bottom of Google Bookmarks homepage.

Export my bookmarks from Google
Easy, just go to this page and you'll download a file called bookmarks.html, that can be imported in your browser. You can also export the bookmarks as a feed, but it won't be very useful unless you're a developer.

Bookmark favorite posts from Google Reader
Install Greasemonkey in Firefox, restart the browser and add this script. You'll see a new "Add bookmark" option at the bottom of each post.

Greasemonkey: Google Reader + Bookmarks
Adds reader posts to Google Bookmarks when clicked.
http://userscripts.org/scripts/show/6497
http://userscripts.org/scripts/review/6497 (Source for "Google Reader + Bookmarks")
http://userscripts.org/scripts/review/6497?format=txt


See also:
http://bookmarks.yahoo.com/

Sunday, January 13, 2008

del.icio.us Button for Google Toolbar

del.icio.us Button for Google Toolbar

For people who use both del.icio.us to save internet favorites and Google Toolbar within your browser:
I've created "Add to del.icio.us" button for your Google Toolbar using "Custom Buttons feature" of T4. Now it is possible to save your favorites with a single click. Installation also takes exactly one click:
Install del.icio.us button for Google Toolbar.

reddit.com - bookmarklets

bookmarklets (reddit.com)

Tuesday, January 8, 2008

del.icio.us bookmarklets

read more: del.icio.us/help/buttons

The post to del.icio.us button allows you to quickly view your favorites.
The my del.icio.us button allows you to quickly view your favorites.


javascript:location.href='http://del.icio.us/post?v=4;url='+encodeURIComponent(location.href)+';title='+encodeURIComponent(document.title)"

Friday, December 21, 2007

Google Reader 'Subscribe...' Bookmarklet

Google Reader - Tips and tricks
If you find yourself repeatedly visiting a website to check for updates, or if you just stumble across a page you want to keep track of, you can easily subscribe to it in Google Reader using the subscribe bookmark.
To use the subscribe bookmark, simply drag the link below to your bookmarks bar. Then, when you're on a web page, you can click the bookmark to view it in Google Reader.
Subscribe...
Once you see the feed preview, confirm your subscription by clicking the "Subscribe" button within Reader.

Google Reader 'Subscribe...' Bookmarklet (subscribe-bookmarklet.js)

Google Reader 'Subscribe...' Bookmarklet (subscribe-bookmarklet.js)

Subscribe...
javascript:var%20b=document.body;if(b&&!document.xmlVersion){void(z=document.createElement('script'));void(z.src='http://www.google.com/reader/ui/subscribe-bookmarklet.js');void(b.appendChild(z));}else{location='http://www.google.com/reader/view/feed/'+encodeURIComponent(location.href)}





javascript: var b = document.body;
if (b && !document.xmlVersion) {
void(z = document.createElement('script'));
void(z.src = 'http://www.google.com/reader/ui/subscribe-bookmarklet.js');
void(b.appendChild(z));

} else {
location = 'http://www.google.com/reader/view/feed/' + encodeURIComponent(location.href)

}


subscribe-bookmarklet.js

(function() {;
var l = "/reader/view/";;;
function k() {
var f = false,
m = document.getElementsByTagName("link");
function n(e) {
var j = e,
c = window.document.location;
if (e.indexOf("/") != 0) {
var d = c.pathname.split("/");
d[d.length - 1] = e;
j = d.join("/")
}
return c.protocol + "//" + c.hostname + j
}
for (var g = 0, a; a = m[g]; g++) {
var h = a.getAttribute("type"),
i = a.getAttribute("rel");
if (h && h.match(/[\+\/]xml$/) && i && i == "alternate") {
var b = a.getAttribute("href");
if (b.indexOf("http") != 0) {
b = n(b)
}
window.document.location = "http://www.google.com" + l + "feed/" + encodeURIComponent(b);
f =
true;
break
}
}
if (!f) alert("Oops. Can't find a feed.")
}
k();
})();


and so on ...