Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make an IE addon/extension in JavaScript?

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.

like image 795
Nikolay Avatar asked Dec 17 '22 12:12

Nikolay


2 Answers

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

like image 63
Guy Korland Avatar answered Jan 05 '23 19:01

Guy Korland


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.

like image 31
Spudley Avatar answered Jan 05 '23 19:01

Spudley