Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to create a simple IE addon, and trying to figure out how to do that in JavaScript. So far I saw a bunch of .NET examples on MSDN, and I've also seen the FireBreath project (which is kinda cool but it's in C++), but nothing in pure JavaScript.

Is there a way at all to make an extension for IE kinda the same way like we do it for FF/Chrome/Opera?

Thanks.

PS: I don't need any UI components, all I need is to track a page-load and alter a bit the HTML page, that's all.

share|improve this question

2 Answers

up vote 2 down vote accepted

Is there a way at all to make an extension for IE kinda the same way like we do it for FF/Chrome/Opera?

In short, no. Sorry. IE extensions need to be compiled, so you can't write them in a scripted language.

You should be able to write it in your choice of .NET language, but Javascript isn't going to be in that list.

share|improve this answer
yup, that's what I've figured. there is another option, to run javascript via greasemonkey, but it again will require the user to install gm4ie or a similar extension first – Nikolay Jul 13 '11 at 8:11

You can try http://kangoextensions.com/ or http://crossrider.com/ both provide a cross browser extensions support which developed in JavaScript

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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