ask toolbar
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 759
Ask.com Toolbar 2.0
Ask.com Toolbar is an extension to search better with Ask.com whereever you go with your Firefox browser. more>>
Ask.com Toolbar is an extension to search better with Ask.com whereever you go with your Firefox browser. Get direct access to the new AskCity and a convenient drop-down box for Maps with your favorite locations.
Save images and Web pages for sharing in MyStuff, get your fill of the blogosphere with Ask-powered blog and feed search, and read news headlines right in the toolbar. Customize your toolbar with any of these and many other options including weather, stocks, shopping, translations and more.
<<lessSave images and Web pages for sharing in MyStuff, get your fill of the blogosphere with Ask-powered blog and feed search, and read news headlines right in the toolbar. Customize your toolbar with any of these and many other options including weather, stocks, shopping, translations and more.
Download (0.063MB)
Added: 2007-05-03 License: Other/Proprietary License Price:
907 downloads
AsiVan Toolbar 1.0.2
AsiVan Toolbar is a Firefox extension to display Live Scores for world soccer fanatics. more>>
AsiVan Toolbar is a Firefox extension to display Live Scores for world soccer fanatics.
The toolbar displays World Cup, Libertadores Cup and Mexican Soccer Real Time Scores.
<<lessThe toolbar displays World Cup, Libertadores Cup and Mexican Soccer Real Time Scores.
Download (0.003MB)
Added: 2007-05-03 License: MPL (Mozilla Public License) Price:
905 downloads
AthensToolbar 1.2c
AthensToolbar provides a toolbar designed to assist existing Athens users manage their accounts. more>>
AthensToolbar provides a toolbar designed to assist existing Athens users manage their accounts.
This toolbar is designed to assist existing Athens users manage their accounts and navigate between resources. Note that it does not grant access to Athens protected resources to non-Athens users.
<<lessThis toolbar is designed to assist existing Athens users manage their accounts and navigate between resources. Note that it does not grant access to Athens protected resources to non-Athens users.
Download (0.035MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
932 downloads
Monalo Toolbar 0.93
Monalo Toolbar is a Firefox extension that shows RSS feed headlines directly in the toolbar and more... more>>
Monalo Toolbar Firefox extension lets you:
1) Show RSS feed headlines directly in the toolbar with a slick fade-in effect. You can also select from a list of topics (i.e. Technology, Video Gaming, Star Wars) to get headlines from feeds relating to the chosen topic.
2) Be notified when there are updates to RSS feeds you wish to monitor.
3) Share links with friends/family/the world.
There are many other features, such as the ability to create your own topic-based "channel" (with RSS) from a mashup of related RSS feeds. So, for example, you could create an "IT Podcasts" channel which would display all the latest (and most popular) IT podcasts from around the web.
The rest is left for you to discover.
<<less1) Show RSS feed headlines directly in the toolbar with a slick fade-in effect. You can also select from a list of topics (i.e. Technology, Video Gaming, Star Wars) to get headlines from feeds relating to the chosen topic.
2) Be notified when there are updates to RSS feeds you wish to monitor.
3) Share links with friends/family/the world.
There are many other features, such as the ability to create your own topic-based "channel" (with RSS) from a mashup of related RSS feeds. So, for example, you could create an "IT Podcasts" channel which would display all the latest (and most popular) IT podcasts from around the web.
The rest is left for you to discover.
Download (0.033MB)
Added: 2007-05-28 License: MPL (Mozilla Public License) Price:
882 downloads
IMVU Toolbar 2.1
IMVU Toolbar is a Firefox extension that allows you to navigate quickly and conveniently through the IMVU website. more>>
Move into the next dimension of web technology with IMVU, the worlds greatest 3D instant messenger! IMVU Toolbar is a Firefox extension that allows you to navigate quickly and conveniently through the IMVU website.
Be a part of the next trend in web social interaction with this extremely functional toolbar. It allows you quicker access to all the things you want from IMVU, all the time!
Imagine how easy it will be to jump in to check your IMVU homepage for messages, see whos online in your buddylist, look through random profiles, surf for products in the catalog, and more with just a simple mouse click.
<<lessBe a part of the next trend in web social interaction with this extremely functional toolbar. It allows you quicker access to all the things you want from IMVU, all the time!
Imagine how easy it will be to jump in to check your IMVU homepage for messages, see whos online in your buddylist, look through random profiles, surf for products in the catalog, and more with just a simple mouse click.
Download (0.029MB)
Added: 2007-06-07 License: MPL (Mozilla Public License) Price:
846 downloads
Tk::ToolBar 0.09
Tk::ToolBar is a toolbar widget for Perl/Tk. more>>
Tk::ToolBar is a toolbar widget for Perl/Tk.
SYNOPSIS
use Tk;
use Tk::ToolBar;
my $mw = new MainWindow;
my $tb = $mw->ToolBar(qw/-movable 1 -side top
-indicatorcolor blue/);
$tb->ToolButton (-text => Button,
-tip => tool tip,
-command => sub { print "hin" });
$tb->ToolLabel (-text => A Label);
$tb->Label (-text => Another Label);
$tb->ToolLabEntry(-label => A LabEntry,
-labelPack => [-side => "left",
-anchor => "w"]);
my $tb2 = $mw->ToolBar;
$tb2->ToolButton(-image => navback22,
-tip => back,
-command => &back);
$tb2->ToolButton(-image => navforward22,
-tip => forward,
-command => &forward);
$tb2->separator;
$tb2->ToolButton(-image => navhome22,
-tip => home,
-command => &home);
$tb2->ToolButton(-image => actreload22,
-tip => reload,
-command => &reload);
MainLoop;
This module implements a dockable toolbar. It is in the same spirit as the "short-cut" toolbars found in most major applications, such as most web browsers and text editors (where you find the "back" or "save" and other shortcut buttons).
Buttons of any type (regular, menu, check, radio) can be created inside this widget. You can also create Label, Entry and LabEntry widgets. Moreover, the ToolBar itself can be made dockable, such that it can be dragged to any edge of your window. Dragging is done in "real-time" so that you can see the contents of your ToolBar as you are dragging it. Furthermore, if you are close to a stickable edge, a visual indicator will show up along that edge to guide you.
ToolBars can be made "floatable" such that if they are dragged beyond their associated window, they will detach and float on the desktop. Also, multiple ToolBars are embeddable inside each other.
If you drag a ToolBar to within 15 pixels of an edge, it will stick to that edge. If the ToolBar is further than 15 pixels away from an edge and still inside the window, but you release it over another ToolBar widget, then it will be embedded inside the second ToolBar. You can "un-embed" an embedded ToolBar simply by dragging it out. You can change the 15 pixel limit using the -close option.
Various icons are built into the Tk::ToolBar widget. Those icons can be used as images for ToolButtons (see "SYNOPSIS"). A demo program is bundled with the module that should be available under the User Contributed Demonstrations when you run the widget program. Run it to see a list of the available images.
Tk::ToolBar attempts to use Tk::CursorControl if its already installed on the system. You can further control this using the -cursorcontrol option. See "PREREQUISITES".
The ToolBar is supposed to be created as a child of a Toplevel (MainWindow is a Toplevel widget) or a Frame. You are free to experiment otherwise, but expect the unexpected.
<<lessSYNOPSIS
use Tk;
use Tk::ToolBar;
my $mw = new MainWindow;
my $tb = $mw->ToolBar(qw/-movable 1 -side top
-indicatorcolor blue/);
$tb->ToolButton (-text => Button,
-tip => tool tip,
-command => sub { print "hin" });
$tb->ToolLabel (-text => A Label);
$tb->Label (-text => Another Label);
$tb->ToolLabEntry(-label => A LabEntry,
-labelPack => [-side => "left",
-anchor => "w"]);
my $tb2 = $mw->ToolBar;
$tb2->ToolButton(-image => navback22,
-tip => back,
-command => &back);
$tb2->ToolButton(-image => navforward22,
-tip => forward,
-command => &forward);
$tb2->separator;
$tb2->ToolButton(-image => navhome22,
-tip => home,
-command => &home);
$tb2->ToolButton(-image => actreload22,
-tip => reload,
-command => &reload);
MainLoop;
This module implements a dockable toolbar. It is in the same spirit as the "short-cut" toolbars found in most major applications, such as most web browsers and text editors (where you find the "back" or "save" and other shortcut buttons).
Buttons of any type (regular, menu, check, radio) can be created inside this widget. You can also create Label, Entry and LabEntry widgets. Moreover, the ToolBar itself can be made dockable, such that it can be dragged to any edge of your window. Dragging is done in "real-time" so that you can see the contents of your ToolBar as you are dragging it. Furthermore, if you are close to a stickable edge, a visual indicator will show up along that edge to guide you.
ToolBars can be made "floatable" such that if they are dragged beyond their associated window, they will detach and float on the desktop. Also, multiple ToolBars are embeddable inside each other.
If you drag a ToolBar to within 15 pixels of an edge, it will stick to that edge. If the ToolBar is further than 15 pixels away from an edge and still inside the window, but you release it over another ToolBar widget, then it will be embedded inside the second ToolBar. You can "un-embed" an embedded ToolBar simply by dragging it out. You can change the 15 pixel limit using the -close option.
Various icons are built into the Tk::ToolBar widget. Those icons can be used as images for ToolButtons (see "SYNOPSIS"). A demo program is bundled with the module that should be available under the User Contributed Demonstrations when you run the widget program. Run it to see a list of the available images.
Tk::ToolBar attempts to use Tk::CursorControl if its already installed on the system. You can further control this using the -cursorcontrol option. See "PREREQUISITES".
The ToolBar is supposed to be created as a child of a Toplevel (MainWindow is a Toplevel widget) or a Frame. You are free to experiment otherwise, but expect the unexpected.
Download (0.055MB)
Added: 2006-06-12 License: Perl Artistic License Price:
1232 downloads
Digg This Toolbar 0.1b
Digg This Toolbar provides a simple toolbar buttons and a menu to allow you to quickly digg articles. more>>
Digg This Toolbar provides a simple toolbar buttons and a menu to allow you to quickly digg articles.
The Digg This! toolbar adds two buttons to your main Firefox toolbar and one
menu. With the toolbar buttons you can quickly goto to Digg or Digg the page
you are viewing.
The menu allows you to goto your Digg profile or any of the
top Digg categories.
<<lessThe Digg This! toolbar adds two buttons to your main Firefox toolbar and one
menu. With the toolbar buttons you can quickly goto to Digg or Digg the page
you are viewing.
The menu allows you to goto your Digg profile or any of the
top Digg categories.
Download (0.028MB)
Added: 2007-04-13 License: MPL (Mozilla Public License) Price:
925 downloads
Quiz Addicts Toolbar 2.1.6
Quiz Addicts Toolbar provides a quiz toolbar for quiz addicts. more>>
Quiz Addicts Toolbar provides a quiz toolbar for quiz addicts.
Adds a quiz toolbar for quiz addicts. Thousands of questions produced on the toolbar, One every 10 minutes.
An ideal way of learning trivia.
Also five quizzes for you to try.
<<lessAdds a quiz toolbar for quiz addicts. Thousands of questions produced on the toolbar, One every 10 minutes.
An ideal way of learning trivia.
Also five quizzes for you to try.
Download (0.18MB)
Added: 2007-07-09 License: MPL (Mozilla Public License) Price:
838 downloads
BanglaCricket Toolbar 1.2.1
BanglaCricket Toolbar provides a Firefox toolbar for BanglaCricket. more>>
BanglaCricket Toolbar provides a Firefox toolbar for BanglaCricket.
BanglaCricket is a fan site for Bangladesh Cricket.
This tool bar allows you to navigate the site and forums.
<<lessBanglaCricket is a fan site for Bangladesh Cricket.
This tool bar allows you to navigate the site and forums.
Download (0.036MB)
Added: 2007-04-07 License: MPL (Mozilla Public License) Price:
931 downloads
CalorieKing Toolbar 1.1.0.0
CalorieKing Toolbar is a Firefox extension which lets you search CalorieKing.com. more>>
CalorieKing Toolbar is a Firefox extension which lets you search CalorieKing.com.
The CalorieKing Toolbar puts an ultra-convenient toolbar right into FireFox which lets you search CalorieKing.com wherever you are on the Internet, all for free.
CalorieKing Club members get the benefit of additional quicklinks straight into their food and exercise diaries, check-ins and forums.
<<lessThe CalorieKing Toolbar puts an ultra-convenient toolbar right into FireFox which lets you search CalorieKing.com wherever you are on the Internet, all for free.
CalorieKing Club members get the benefit of additional quicklinks straight into their food and exercise diaries, check-ins and forums.
Download (0.013MB)
Added: 2007-07-19 License: MPL (Mozilla Public License) Price:
832 downloads
Firevine Toolbar 0.3.1
Firevine Toolbar is a toolbar for Mozilla Firefox webbrowser, that helps to improve the user experience at newsvine.com. more>>
Firevine Toolbar is a toolbar for Mozilla Firefox web browser, that helps to improve the user experience at newsvine.com.
Multiple site functions have been included in this toolbar, including a quick link to both your column and the frontpage as well as a site search, automatically updating watchlist and seed status checker.
<<lessMultiple site functions have been included in this toolbar, including a quick link to both your column and the frontpage as well as a site search, automatically updating watchlist and seed status checker.
Download (0.025MB)
Added: 2007-06-27 License: MPL (Mozilla Public License) Price:
855 downloads
netcrafttoolbar 1.1.1.8
netcrafttoolbar is a Firefox extension that blocks phishing sites, helping to protect users from online fraud. more>>
netcrafttoolbar is a Firefox extension that blocks phishing sites, helping to protect users from online fraud.
netcrafttoolbar toolbar is only for Firefox 1.5 or later. For earlier versions of Firefox, please download the toolbar direct from http://toolbar.netcraft.com/install
<<lessnetcrafttoolbar toolbar is only for Firefox 1.5 or later. For earlier versions of Firefox, please download the toolbar direct from http://toolbar.netcraft.com/install
Download (0.091MB)
Added: 2007-08-01 License: MPL (Mozilla Public License) Price:
820 downloads
main + location toolbar 0.01
main + location toolbar is a little hack for KDE (KDE improvement). more>>
main + location toolbar is a little hack for KDE (KDE improvement).
I dont know if there out is a hack to get maintoolbar + locationtoolbar in one line... but i did it by myself.
I get all normal bottons, location-depending bottons (in kghostview for exemple) and location toolbar (I tink find combo should work too).
edit ~/.kde/share/apps/konqueror/konqueror.rc:
-remove locationbar section
-maintoolbar section should be like the download (i cant put it here...)
I hope this work for anyone who prefers this toolbar way and in a easy way...
<<lessI dont know if there out is a hack to get maintoolbar + locationtoolbar in one line... but i did it by myself.
I get all normal bottons, location-depending bottons (in kghostview for exemple) and location toolbar (I tink find combo should work too).
edit ~/.kde/share/apps/konqueror/konqueror.rc:
-remove locationbar section
-maintoolbar section should be like the download (i cant put it here...)
I hope this work for anyone who prefers this toolbar way and in a easy way...
Download (MB)
Added: 2007-04-02 License: GPL (GNU General Public License) Price:
941 downloads
Personal Toolbar Button 1.01
Personal Toolbar Button is an extension which adds a button to toggle on/off the Personal Toolbar toolbar in Firefox. more>>
Personal Toolbar Button is an extension which adds a button to toggle on/off the Personal Toolbar toolbar in Firefox.
Adds a button to toggle on/off the Personal Toolbar toolbar in Firefox. This way you can toggle off your bookmarks for more screen real estate when browsing, and easily toggle it back on when you want to go browse another site. Dedicated to public domain, since it is such a simple extension.
Updated version should resolve most icon/theme problems. It introduces a new bug: the icon is ugly! ;-) If anyone can help, Id appreciate that!
If you have any problems, post a comment or message me on aim J C 2 A S T R O (no spaces) and Ill try to help.
Well, the button worked fine. Made the bookmarks toolbar appear and disappear. Unfortunately, the toolbar was blank the entire time. Uninstalling the extension has not helped. Nothing on the toolbar and it will not accept drag and drop. Very annoying.
Im really sorry you had that problem. It works for me almost perfectly. Data loss is a very serious issue. I dont know how my little extension could cause that. It uses a simple three-line function to toggle a toolbar, and it modifies only one property on the DOM.
I cant replicate your browsers behavior at all. What is your browers configuration? Your problem could be unrelated to my little extension. Which extensions and which version of Firefox do you run?
Found the button :) Its blank with no icon, but works fine.
<<lessAdds a button to toggle on/off the Personal Toolbar toolbar in Firefox. This way you can toggle off your bookmarks for more screen real estate when browsing, and easily toggle it back on when you want to go browse another site. Dedicated to public domain, since it is such a simple extension.
Updated version should resolve most icon/theme problems. It introduces a new bug: the icon is ugly! ;-) If anyone can help, Id appreciate that!
If you have any problems, post a comment or message me on aim J C 2 A S T R O (no spaces) and Ill try to help.
Well, the button worked fine. Made the bookmarks toolbar appear and disappear. Unfortunately, the toolbar was blank the entire time. Uninstalling the extension has not helped. Nothing on the toolbar and it will not accept drag and drop. Very annoying.
Im really sorry you had that problem. It works for me almost perfectly. Data loss is a very serious issue. I dont know how my little extension could cause that. It uses a simple three-line function to toggle a toolbar, and it modifies only one property on the DOM.
I cant replicate your browsers behavior at all. What is your browers configuration? Your problem could be unrelated to my little extension. Which extensions and which version of Firefox do you run?
Found the button :) Its blank with no icon, but works fine.
Download (0.003MB)
Added: 2007-04-07 License: MPL (Mozilla Public License) Price:
934 downloads

Okapiland Search Toolbar 1.3
Okapiland Search Toolbar provides Internet search in Composite Page Mode (CPM) that displays linked pages themselves. more>>
Okapiland Search Toolbar 1.3 will make your Firefox browser even more powerful as it is designed to provide Internet search in Composite Page Mode (CPM) that displays linked pages themselves in addition to hyperlinks.
All pages can be displayed by scrolling the pages. Internet Search is good for the quick search or clear search, but the deep search or ambiguous search requires your effort. The CPM can save your operation. To prevent unexpected intruder at displaying the linked pages, the dynamic type of contents, e.g. JavaScript or Applet, is not displayed.
Web search is provided with Yahoo! Search Web Services. Okapibar consists of a keyword input, search engine buttons, and function buttons. The search engine button selects YahooCPM or Yahoo. The function buttons are a highlight button to change the background color of words same as the key words, a compact button to change between one line and two-line layout, and a script button to show that Javascript is disable during the search in CPM.
Enhancements:
- Support Firefox 2.0, and add an improvement.
- The width of each frame is automatically adjusted at the resize of the browser.
Requirements:
- Mozilla Firefox
Added: 2007-09-26 License: MPL Price: FREE
27 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above ask toolbar search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed