Tagged Questions
The ieaddon tag has no wiki summary.
9
votes
3answers
195 views
How to uninstall IE Addon
I am building an IE Addon in C#. I uninstall my addon using Programs and Features. But it doesn't work out. The toolbar stays there on the browser. Tried Manage Addons from Tool Menu in IE. It ...
9
votes
3answers
1k views
Is there a way to port a chrome extension to other browsers?
Is there a way to port a chrome extension to other browsers, without having to entirely re-write the code? My chrome extension uses the browser_action command to open "popup.html" in the extension ...
7
votes
1answer
464 views
How to copy access Database file, mdb from program files to Isolated Storage in c#
I am building an IE Addon or Extension using C#. I have created an Access Database MDB file which will be in the Program files. Now at runtime I need to copy this MDB file to Isolated Storage so that ...
6
votes
3answers
439 views
How to make an addon like Firebug?
I am basically a dotnet developer(beginner). I need to make an IE addon just like Firebug in Firefox. I need HTML and CSS features of Firebug, don't need the other features.
I would like to know where ...
4
votes
1answer
295 views
How to get page source of IFrame in a subdomain in IE addon
I am making an IE Addon using BandObjects in C#. I am making my web browser navigate to a page, suppose it's example.com. In that page there's an IFrame whose src is sub.example.com. So, IFrame points ...
4
votes
3answers
3k views
how to develop internet explorer add-on
Can we create add-on for IE? If yes where can i find required resources/docs?
2
votes
1answer
103 views
Calling BHO method from Javascript?
I am trying to call my BHO method from the javascript. The problem is same as stated in the the following posts:
Call BHO from Javascript function
...
1
vote
1answer
29 views
Log4net inside BHO does not work?
I'm trying to use log4net with an external config file, but it does not work: nothing gets logged
<?xml version="1.0" encoding="utf-8" ?>
<log4net>
<appender name="RollingFile" ...
1
vote
0answers
142 views
Editing cookie from IE Addon
I am trying to create one addon using C#.net and SpicIE framework. I want to edit a cookie for a particular domain from my addon. I want to read/write values to/from cookie. How can i do it?
Please ...
1
vote
1answer
106 views
Can Internet Explorer run Add-Ons targeting different .NET Framework versions?
If I build an IE Add-On on top of the .NET Framework 4.0, can it be used at the same time with other Add-Ons targeting different .NET Framework Versions (i.e. 2.0)?
Also, should I care about ...
1
vote
1answer
133 views
What are the limitations of SpicIE in developing an IE add-on?
Are there limitations to using SpicIE (with C#) to develop an IE extension? If an IE extension is developed in SpicIE, and then later needs to be developed as a BHO (C++?), will it have to be rebuilt ...
1
vote
1answer
795 views
Call BHO from Javascript function
Greetings,
I am new to MSDN/Windows programming/MFC/IE extension development environment. I am looking to port my Firefox and Chrome addon into an IE addon. I have been successful to a good extent ...
1
vote
1answer
321 views
Is that possible to create IE toolbar using WPF?
I just start learning WPF, is that possible I can create an IE toolbar by using WPF, if so, is there any document about how to do that?
Thanks a lot.
0
votes
0answers
34 views
creating vb6 add in for internet explorer with access to a port
is it possible to do that?
I'm creating a project in vb6. The idea is to receive the webpage by the mobile (bluetooth) as a text file and show it through com4 port to a PC user. Mobile is connected ...
0
votes
1answer
16 views
How to show a warning from BHO in Internet Explorer?
I'd like to display a warning on some websites, similar to the warning IE shows when it blocks an ActiveX.
I'm tryimg to do this in C# in a Browser Helper Object. Any code sample, or reference on ...
0
votes
2answers
62 views
How can I create an Internet Explorer addon?
How to create an Internet Explorer addon with .net. All I need is a just a menu under right click context menu.
.net is a must.
Edit: What I am trying to do is add a context menu to IE.
0
votes
0answers
21 views
Building Browser Add ons - do Internet Explorer Users Install Them? [closed]
Firstly sorry if this isn't quite the right place to post this question. It's kind of related to software development insofar as it relates to supporting/disproving the business case for IE add on ...
0
votes
0answers
104 views
My Internet Explorer add-on does not work
I have written sample IE add-on (based on samples found on internet). This addon makes log file and writes in it informations from OnDocumentComplete and OnBeforeNavigate2 events.
Unfortunatelly this ...
0
votes
1answer
49 views
SpicIE - OnDocumentComplete not being called
I downloaded the SimpleLogger sample add-on. When I ran it, I noticed that OnDocumentComplete is not being called. OnBeforeNavigate is being called though. What can be the reason that its not being ...
0
votes
1answer
141 views
deskband toolbar button is not showing when IE protected mode is enabled
I have developed an add-on button that sends a tcp message to another process with the URL of the current tab. That's all it does
Since my experience is limited to managed code, I have used this ...
0
votes
1answer
161 views
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 ...
0
votes
2answers
162 views
Internet Explorer Addon Toolbar Button Error
I am currently developing an IE toolbar button in C# that is supposed to be able to get the contents of the current tab and work with it. However, whenever the button is clicked, the ...
0
votes
0answers
41 views
How to store information under IE Protected Mode using Folder Redirection?
I need to store/retrieve information under a IE plugin/addon. In the local mode it can be done using %USERPROFILE%\AppData\LocalLow but how this can be done using "Folder Redirection"? In other words ...
0
votes
0answers
162 views
How to add a DropDown Button into the IE default toolbar?
I'd like to develop an Internet Explorer Add-On, which creates a new DropDown Button with several sub-items similar to the print DropDown button ( http://i37.tinypic.com/flelg4.jpg ).
I’m currently ...
0
votes
0answers
161 views
A solution to inject a script into a webpage as an IE addon
I have a small web snippet which has to be injected into a web page on a page load (only happens if the page domain matches an entry that I have in a JSON object). Have been able to handle it as a ...
0
votes
1answer
85 views
Updating IE Addon
Is it possible to get my Internet Explorer plugin to update itself without requiring a manual uninstall/reinstall using the .msi? I have been thinking of trying to do this programmatically but I am ...