Improvement requests :  K-Meleon Web Browser Forum
Use this forum to talk about a feature you're missing. 
Google Services
Posted by: brok
Date: July 28, 2007 10:26AM

Hi,

I like how fast K-Meleon is compared to Firefox. I have recommended it to several friends with slow computers. I would also like to stick with K-Meleon, but there are two google services that I miss (cannot be too hard to be implemented):

Google Toolbar with
- Google search field
- Google pagerank tool (to show the pagerank of the website visited)

In Opera, you can also simply write a "g" + the keyword in the address line to automatically search for the respective keyword in google. That would also be an appropriate solution.

What do you think, would that be possible to implement?

Thx in advance,
Brok

Options: ReplyQuote
Re: Google Services
Posted by: JujuLand
Date: July 28, 2007 11:39AM

For Google Toolbar, look what I said about K-Meleon Search features here

The Opera feature you(re talking about was a previous feature of K-Meleon, but there are replacements for this.

For GoogleRank, there is nothing presently in K-Meleon, but I think it ougth not to be too much difficult to make it.

A+



Mozilla/5.0 (x11; U; Linux x86_64; fr-FR; rv:38.0) Gecko/20100101 Ubuntu/12.04 K-Meleon/76.0


Web: http://jujuland.pagesperso-orange.fr/
Mail : alain [dot] aupeix [at] wanadoo [dot] fr



Ubuntu 12.04 - Gramps 3.4.9 - Harbour 3.2.0 - Hwgui 2.20-3 - K-Meleon 76.0 rc



Options: ReplyQuote
Re: Google Services
Posted by: Dorian
Date: July 29, 2007 06:58AM

Quote
brok
In Opera, you can also simply write a "g" + the keyword in the address line to automatically search for the respective keyword in google. That would also be an appropriate solution.

Create a new bookmark.
Set "http://www.google.com/search?q=%s"; for the URL
Set "g" for the nick.

Or you can just use ctrl+g



Edited 1 time(s). Last edit at 07/29/2007 06:59AM by Dorian.

Options: ReplyQuote
Re: Google Services
Posted by: brok
Date: July 29, 2007 08:36PM

Hi,

thx so far!

Options: ReplyQuote
Re: Google Services
Posted by: Ophie
Date: August 22, 2007 07:20PM

I was kind of disappointed when I realised that I don't have a spell checker>google toolbar. Anyway to make it work with this browser? I really really like it. Oh and yahoo browser also.

Options: ReplyQuote
Re: Google Services
Posted by: JujuLand
Date: August 22, 2007 09:11PM

Spellchecker and Toolbar extension are about to be here. Be patient ...

A+



Mozilla/5.0 (x11; U; Linux x86_64; fr-FR; rv:38.0) Gecko/20100101 Ubuntu/12.04 K-Meleon/76.0


Web: http://jujuland.pagesperso-orange.fr/
Mail : alain [dot] aupeix [at] wanadoo [dot] fr



Ubuntu 12.04 - Gramps 3.4.9 - Harbour 3.2.0 - Hwgui 2.20-3 - K-Meleon 76.0 rc



Options: ReplyQuote
Re: Google Services
Posted by: qadri
Date: October 01, 2007 05:43PM

if no google bar alright but is there any possibility to any other worth-while tool-bar?

Options: ReplyQuote
Re: Google Services
Posted by: JujuLand
Date: October 01, 2007 06:12PM

SearchBar is online since some days.

A+



Mozilla/5.0 (x11; U; Linux x86_64; fr-FR; rv:38.0) Gecko/20100101 Ubuntu/12.04 K-Meleon/76.0


Web: http://jujuland.pagesperso-orange.fr/
Mail : alain [dot] aupeix [at] wanadoo [dot] fr



Ubuntu 12.04 - Gramps 3.4.9 - Harbour 3.2.0 - Hwgui 2.20-3 - K-Meleon 76.0 rc



Options: ReplyQuote
Re: Google Services
Posted by: ap3rus
Date: March 14, 2008 07:58PM

google bookmarks support would be great, just a simple button with dropdown popup, i dont think it is too heavy to develop this)

Options: ReplyQuote
Re: Google Services
Posted by: desga_2
Date: March 15, 2008 05:31PM

How work google bookmarks?
Are online web bookmarks or filed (bookmarks.html)?
Where are google bookmarks stored?

Google Bookmarks requie a Google account.

Options: ReplyQuote
Re: Google Services
Posted by: desga_2
Date: March 15, 2008 06:19PM

You can access your Google bookmarks with this URL: http://www.google.com/bookmarks/bookmarks.html

Saved this web page in your disk as bookmarks.html and config KM to use this file as bookmarks file.
Also you can add this links to your KM bookmarks file with I/E Bookmarks tool.

Options: ReplyQuote
Re: Google Services
Posted by: desga_2
Date: March 15, 2008 09:42PM
Options: ReplyQuote
Re: Google Services
Posted by: desga_2
Date: March 15, 2008 09:55PM

You can use a url line as this to add Google Bookmark:

h\ttp://www.google.com/bookmarks/mark?op=add&bkmk=h\ttp://www.your url.com&title=Your title&labels=Your labels&annotation=your notes

Note: remove \ to http, in bold field options.

Options: ReplyQuote
Re: Google Services
Posted by: Tony E
Date: May 12, 2008 04:53PM

You can just set the homepage to igoogle and most of the toolbar features are available.

The inability to incorporate google toolbar means that I cannot access my google bookmarks which is a major limitation.

Options: ReplyQuote
Re: Google Services
Posted by: JamesD
Date: May 16, 2008 06:26PM

Google rank can be gotten with just two clicks using a third party program. The program can be obtained at http://www.nirsoft.net/utils/grank.html. I put the contents of the zip file in a folder called GoRank in my user macro folder. The following code can be put in whichever menu you choose. I just happen to have mine in a code test area. When the external window opens just click on "paste & retrieve" and you get the rank for page.

# test snippets of code here
# this version located in KM 1.5a1
# snippet.kmm

_Snippet_RunCode{
setclipboard($URL);
exec("\"".getfolder(UserMacroFolder)."\\GoRank\\grank.exe\"") ;
}

_Snippet_BuildMenu{
# add another option to Favorites menu
setmenu("F&avorites",macro,"Snippet Test",_Snippet_RunCode,3);
}

_Snippet_GetPath{
### Snippet.js is supposed to be located in the same folder as Snippet.kmm (this file).
### If it isn't, Windows Script Host will notify the user.
### Double underscore makes variable local only.
$__Data=readfile(getfolder(MacroFolder)."\\Snippet.kmm");
$_Snippet_Path=getfolder($__Data==""?UserMacroFolder:MacroFolder)."\\Snippet.js";
}
$OnStartup=$OnStartup."_Snippet_GetPath;";

$OnInit=$OnInit."_Snippet_BuildMenu;";
$macroModules=$macroModules."Snippet;";

Options: ReplyQuote
Re: Google Services
Posted by: JamesD
Date: May 20, 2008 04:59PM

Quote
Jujuland
For GoogleRank, there is nothing presently in K-Meleon, but I think it ougth not to be too much difficult to make it.

I have placed GoPgRank in the macro Library http://kmeleon.sourceforge.net/wiki/KmmGoPgRank

Options: ReplyQuote
Re: Google Services
Posted by: desga2
Date: May 20, 2008 05:06PM

@ JamesD:
Thanks for your code input to the MacroLibrary.

K-Meleon in Spanish

Options: ReplyQuote


K-Meleon forum is powered by Phorum.