I want to check either user already install the chrome extension or not. Use code below directly check their chrome's extension, which I not sure it's possible or not.
I get this error with HttpBrowserCapabilities
.
Error: The type or namespace name HttpBrowserCapabilities does not exist in the namespace 'System.Web'
using System;
using System.Web;
namespace chromeCheck
{
class Program
{
static void Main(string[] args)
{
System.Web.HttpBrowserCapabilities browser = Request.Browser;
if (browser.Browser == "chrome")
{
//check for extension alert user if not found the extension
}
}
}
}