We are writing a website in C#, and we need to detect if the client's browser has a certain (custom developed) add-on installed.

We have figured out a way how to do it when the client is using Firefox or Internet Explorer. How can we do the same with Safari and Chrome?

link|improve this question

48% accept rate
What kind of Platform are you writing? – abatishchev May 17 '11 at 14:51
Have you figured-out Chrome or not? You mention it twice in your question. – WEFX May 17 '11 at 14:52
1  
I don't agree with those Close votes. This is a real question. – Jeff Yates May 17 '11 at 15:12
1  
How do you do it with Firefox and IE? – Heinzi May 17 '11 at 15:42
1  
Since your detection is actually done in JavaScript (rather than in C#, which just outputs the JavaScript), I've added the javascript tag and changed the title. Hopefully, that will attract JavaScript experts who can help you. – Heinzi May 19 '11 at 7:18
show 3 more comments
feedback

1 Answer

You can add your Addon name to User-Agent variable of your browser (by modyfing this value in browser settings store, open about:config in URL for Firefox). Then you can read it back from Request object.

link|improve this answer
2  
That's so dirty... – antisanity May 17 '11 at 14:54
If the UserAgent string gets too long, it can become truncated and information is lost. – Jeff Yates May 17 '11 at 14:54
@Jeff Yates. There is no limitation on HTTP side for that. Do you know any? – dario May 17 '11 at 15:00
Or (depending on the capabilities of the plugin) add it as a custom (X-*) header. – Benjamin Podszun May 17 '11 at 15:00
Maybe not, but it happens on Windows. I had that issue several times and it caused some weird issues as ASP.NET truncates the User Agent string to 256 characters. I wouldn't rely on it. – Jeff Yates May 17 '11 at 15:09
feedback

Your Answer

 
or
required, but never shown

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