Go-Go Google Gadgets

happygeek 0 Tallied Votes 278 Views Share

Google has announced the availability of more than 1000 ‘Google Gadgets’ that can be run on any web site, differentiating them from the existing desktop gadgets which could only work locally by way of the Google Desktop software or on a personalized Google homepage.

These bits of cobbled together HTML and Javascript code that act as dynamic applications when installed on your web page are also different from the Widgets that Yahoo has had available ever since it acquired Konfablator last year. Those 3000+ plus mini-applications only run if you download and install an 11Mb host application first, and then only on a Windows based PC. Apple and Microsoft also have similar requirements, for now. It seems highly unlikely that Google will be allowed to maintain the lead in independent widgetry for long.

Indeed, they already have competition from the likes of Netscape co-founder Marc Andreeson with Ning that enables entire sites to be built from widgets, and Widgetbox that offers an open marketplace of the things.

What I find most interesting, however, is the fact that this really is a case of letting the users not only decide what they want but letting them build it as well. Surprisingly, only 2% of the gadgets available are Google developments, the rest all come from third part programmers. Indeed, given the exposure offered by the Google brand, this could be a great way to get your spare time programming fun projects distributed to a global audience.

The full list can be found at Google Gadgets.

Dani AI

Generated

A short update and practical notes for anyone who finds this old thread: was right that Google opened a rich ecosystem for small embeddable apps, but the distribution landscape changed a lot afterward. Google discontinued Google Desktop (including its gadgets) and retired iGoogle (the big consumer gadget directory), so many of the original channels went away. Gadgets themselves still exist in places such as Google Sites and as self‑hosted XML/iframe widgets, but you can no longer rely on the old desktop/iGoogle feeds for distribution. (googleblog.blogspot.com)

For stability and performance (answering ’s performance concern): port legacy gadgets to small, asynchronous embeds or to iframe-hosted widgets instead of host-dependent clients. Use lazy-loading or a lightweight static “facade” image to defer heavy code until interaction, reserve explicit width/height to avoid layout shifts, and sandbox/limit third‑party privileges with CSP and iframe attributes. These patterns cut load time and reduce security exposure compared with monolithic gadget containers. See web.dev and MDN for pragmatic embed and iframe guidance. (web.dev)

If the gadget provided charts or spreadsheet features (as noted): Google’s old Image Charts/Chart API was deprecated and shut down, and PHPExcel has been superseded. Migrate server-side spreadsheet work to PhpSpreadsheet (successor to PHPExcel) and client-side visuals to modern libraries such as Chart.js or Google Charts (or render server-side images only where necessary). That gives you actively maintained code and better browser performance. (en.wikipedia.org)

Quick migration checklist

  • Inventory: list every gadget URL, API dependency and where it’s embedded.
  • Pick a target: (a) host as an iframe + async JS, (b) convert to a Google Sites gadget spec, or (c) rebuild as an Apps Script HTML Service app for Workspace.
  • Implement: add lazy-load, reserved space, CSP, and analytics; test cross‑browser and mobile.

Follow the embed best practices above and keep a maintenance plan — embeddable code is useful, but fragile if left unmaintained. (developer.mozilla.org)

drewhugh 0 Newbie Poster

I love google gadgets but... it takes up to much space, slows my pc down. Im waiting for the google os. that will surely kick alota butts... but i am curious if they are not officially releasing it cus they do not want a lawsuit from Mr. Gates.. who knows. keep it up google. i am curious how far you legs will spread until you fall? i hope you dont but icarus flew to close the sun too. ..

Member Avatar for Member #949455
Member #949455

I also like Google Gadgets. But there are certain features which they discontinue:

The alternative is PHPExcel or other scripts that can produce those kind of charts or an app.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.