Tabbles+ScrapBook+Gyazo

May 31, 2010 by nefycee · 2 Comments 

Ich will euch mal ganz kurz dieses Traum Trio für alle Firefox User vorstellen und wie super diese in Kombination funktionieren.
Ich rolle das mal von hinten auf. Bei Gyazo handelt es sich um ein geniales Screenshot Programm das  sich in das Rechtsklick Menü ein baut und den abfotografierten Bereich eures Schirms sofort auf den Gyazo Server hoch lädt. Ihr erhaltet damit sofort einen Link unter dem jeder euren Screen betrachten kann.

Bereich auf dem Bildschirm wird ausgewählt Markierte Adresszeile zeigt den Link zum Screen

Das allein ist schon genial und sollte jeder haben.

Nun kommt aber noch das großartige Addon ScrapBook von Gomita oder ScrapBook Plus dazu.

Menü von Scrapbook

Was macht dieses Addon? Nun wer es noch nicht kennt und liebt – ScrapBook erlaubt das abspeichern einer kompletten Webseite, ebenfalls per Rechtsklick. Die Seiten werden mit ihrem gesamten Inhalt wie Links und Bildern, Eins zu Eins archiviert und können zu einem späteren Zeitpunkt betrachtet oder bearbeitet werden.

Für archivierte Webseiten gibt es ein eigenes Menü mit hierarchischem Ordnersystem.

Gerade das jede archivierte Seite im eurem Browser unter eigenem Pfad angezeigt wird macht es nun möglich diese Seiten mit Tabbles und mit Hilfe des Tabbles-Bookmarklets zu taggen (kategorisieren).

Wenn ich also einen Screen mit Gyazo mache und dann diesen Screen mit ScrapBook archiviere kann ich ihn mit Tabbles, wie gewohnt, einfach und schnell wieder finden. Sowohl die online Links der Gyazo-Screens und der Webseiten lassen sich tabblen, als auch der die offline archivierten Seiten und Screens die man auf der eigenen Festplatte geschützt abgelegt hat.

Genial dieses Trio!  :-o

Ich liebe es <3

Browser integration on Tabbles portable: a little how-to for expert users

April 16, 2010 by Andrea D'Intino · Leave a Comment 

HELLO PORTABLE WORLD,

Our new baby – Tabbles Portable – still needs some polishing, some of the coolest features are not there yet. One of those is the critically acclaimed (?) browser integration extension.

Anyway for those of you who enjoy to play around with stuff, I put together a workaround to install it, on our forum.

Enjoy! :D

Browser integration via bookmarklet – tag URLs with one click, with Tabbles

February 22, 2010 by Andrea D'Intino · 1 Comment 

HELLO WORLD,

We’ve just released a beta introducing Browser integration via bookmarklet, it’s on our forum right now.

What’s so cool about it?

- You can group together files, web pages, and emails (if you’re using Gmail), with one click

.

You’ll have a little button on your browser, when you push it the Tabbles “Quick tag” window will pop-up and easily let you tag URLs…the cool thing is that you can tag URLs along with files and gmail emails, and find them together into the same tabbles (groups).

Plus, this works also as preliminary foundation to an SDK system, allowing people to write plugins and software to tag files/urls in all possible ways (and soon emails too). It’s all in the forum post.

This is what it looks like:

browser integration - Firefox

Tabbles 1.4.10b1 - browser integration - Firefox

How does it work?

We got the the hint from Kromeboy, he suggested us to register a custom protocol and then create a simple bookmarklet. The whole thing took less than a couple of days of work.

Step 1 – registering a custom protocol: you can make a couple of experiments on your own pc, copy&paste this text into a file.reg and double click on it. The function of registering a custom protocol is to tell Windows that each time the protocol is called, a certain application should be executed and what follows the protocol should be sent to the application as arguments. Here we’re registering the protocol “tabbles:” (looks a bit like “mailto:”, isn’t it? ) and mapping it on the path where tabbles.exe is located (on my computer).

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\tabbles]
“URL Protocol”=”\”\”"
“EditFlags”=hex:02,00,00,00
@=”\”URL:tabbles Protocol\”"
[HKEY_CLASSES_ROOT\tabbles\DefaultIcon]
@=”C:\\Program files\\Yellow blue soft\\Tabbles\\tabbles.exe,0″
[HKEY_CLASSES_ROOT\tabbles\shell]
[HKEY_CLASSES_ROOT\tabbles\shell\open]
[HKEY_CLASSES_ROOT\tabbles\shell\open\command]
“(Default)”=”\”C:\\Program files\\Yellow blue soft\\Tabbles\\tabbles.exe\” \”%1\”"
@=”\”C:\\Program files\\Yellow blue soft\\Tabbles\\tabbles.exe\” \”%1\”"
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\tabbles]“URL Protocol”=”\”\”"”EditFlags”=hex:02,00,00,00@=”\”URL:tabbles Protocol\”"
[HKEY_CLASSES_ROOT\tabbles\DefaultIcon]@=”C:\\Program files\\Yellow blue soft\\Tabbles\\tabbles.exe,0″
[HKEY_CLASSES_ROOT\tabbles\shell]
[HKEY_CLASSES_ROOT\tabbles\shell\open]
[HKEY_CLASSES_ROOT\tabbles\shell\open\command]“(Default)”=”\”C:\\Program files\\Yellow blue soft\\Tabbles\\tabbles.exe\” \”%1\”"@=”\”C:\\Program files\\Yellow blue soft\\Tabbles\\tabbles.exe\” \”%1\”"

Step 2 – the bookmarklet: this is also pretty easy for a non programmer like me. If you google you’ll find a bunch of tutorials and examples of Javascript code. The one we’re using is this:

javascript:void(location.href='tabbles:tag_url'+';'+encodeURIComponent(document.title)+';'+encodeURIComponent(window.location.href))

What this piece of Javascript does is sending a string to the protocol tabbles: followed by the parameters “tag_url”, “title of the page” and “address of the page” – the “;” is used as separator. For example, when used on the tabbles homepage, the output of the bookmarklet is:

tabbles:tag_url;Tabbles%20%7C%20%20folders%20evolved;http%3A%2F%2Fwww.tabbles.net%2F

which Tabbles reads as:

tabbles:tag_url;Tabbles |  folders evolved;http://www.tabbles.net/
If you have Tabbles installed you can check the output using the debug log (Tools > Advanced > Show debug log).
And that’s it! Doesn’t sound too hard, isn’t it?  :-D

Enjoy!

Andrea + Maurizio