"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How Can I Reliably Detect Safari, Chrome, Firefox, IE, and Opera Browsers Using Duck Typing?

How Can I Reliably Detect Safari, Chrome, Firefox, IE, and Opera Browsers Using Duck Typing?

Published on 2024-12-23
Browse:734

How Can I Reliably Detect Safari, Chrome, Firefox, IE, and Opera Browsers Using Duck Typing?

Detect Safari, Chrome, IE, Firefox, and Opera Browsers with Duck-Typing

Determining the user's browser is often necessary for redirecting them to the appropriate download link for browser-specific extensions. However, relying on the User agent string for browser detection is unreliable due to its susceptibility to spoofing.

A more reliable method, known as duck-typing, can be used to identify browsers based on their specific characteristics. Here's a breakdown:

Opera 8.0 :

var isOpera = (!!window.opr && !!opr.addons) || !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;

Firefox 1.0 :

var isFirefox = typeof InstallTrigger !== 'undefined';

Safari 3.0 :

var isSafari = /constructor/i.test(window.HTMLElement) || (function (p) { return p.toString() === "[object SafariRemoteNotification]"; })(!window['safari'] || (typeof safari !== 'undefined' && window['safari'].pushNotification));

Internet Explorer 6-11:

var isIE = /*@cc_on!@*/false || !!document.documentMode;

Edge 20 :

var isEdge = !isIE && !!window.StyleMedia;

Chrome 1 - 79:

var isChrome = !!window.chrome && (!!window.chrome.webstore || !!window.chrome.runtime);

Edge (based on chromium) detection:

var isEdgeChromium = isChrome && (navigator.userAgent.indexOf("Edg") != -1);

Blink engine detection:

var isBlink = (isChrome || isOpera) && !!window.CSS;

Once you have detected the browser using these methods, you can redirect users to the appropriate download link for their browser-specific extension.

However, it's crucial to emphasize that you should only use browser detection when necessary, such as displaying browser-specific installation instructions. As a general best practice, focus on feature detection whenever possible.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3