vote up 10 vote down star
1

After test driving Google Chrome for 30 minutes or so, I like it, even if it seems bare-bones at the moment. The obvious way to add a few things I can't live without would be through plugins. Does anyone have any links to resources on how to get started building a plugin/addon for Chrome? Thanks.

flag

43% accept rate
Note: Plugins(NPAPI) and extensions(JS Based) are not the same. – SDX2000 Sep 16 at 8:26

6 Answers

vote up 9 vote down check

Matt Cutts (the Google SEO guru) has a Q&A about chrome, and writes about it:

Q: But I can’t install extension X! Google Chrome is dead to me if I can’t use extension X!
A: Then you’ll have to use another browser for a while. Google Chrome currently doesn’t support browser extensions (it does support plug-ins, such as Flash). I’m sure that extensions/add-ons are something that the Chrome team would like to do down the road, but the Chrome team will be a bit busy for a while, what with the feedback from the launch plus working on Mac and Linux support. I’d suggest that you give Google Chrome a try for a few days to see if enjoy browsing even without extension X. A lot of really cool extension-like behaviors such as resize-able textareas and drag-and-drop file upload are already built into Google Chrome.
link|flag
Its 2009, any updates? – SDX2000 Sep 15 at 16:41
vote up 1 vote down

Hi,

If anyone's still interested here is a link to the latest extensions developer documentation page for Google chrome.

NOTE: Plugins (NPAPI) and extensions(JS Based) are not the same

From the doc...

Extensions are small software programs that can modify and enhance the functionality of Google Chrome.

You write them using web technologies like HTML, JavaScript, and CSS. So if you know how to write web pages, you already know most of what you need to know to write extensions.

link|flag
vote up 3 vote down

Chromium supports NPAPI plugins which is harder to program compared to Firefox extensions. However NPAPI has better performance and is more versatile.

Checkout this minimalistic example of an NPAPI plugin.

link|flag
vote up -1 vote down

Thanks for the answers. From reading the Chrome comic book, I thought there would be a real addon api available, similar to Firefox.

link|flag
How is NPAPI not a "real addon api"? – korona Feb 4 at 9:42
vote up 0 vote down

I haven't seen anything about an extensibility API for Chrome yet; it may be too early in its lifetime for that to be released.

link|flag
vote up 4 vote down

Chrome does support the netscape plugin api, but that is for displaying certain kinds of content.

You seem to be after a extention api, really firefox is the only major browser to encourage and support third party extentions to browsing capability (that aren't simply new toolbars)

Nothing in the developer documentation points to a browser enhancing api - google seem to want to keep a tight reign on the look and feel of the application.

You might find a more conclusive answer on the development site:

dev.chromium.org, and some of the developers might be on irc on #chromium on freenode.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.