How to remove Skype Call Tool from browser? In particular, Chrome?

If you are viewing my page below:

http://www.noxinnovations.com/portfolio/nue/

... In Google Chrome (In particular, perhaps others too?).

You will notice that there is some Skype extension that allows users to click-and-call from a browser. Which messed up my design pretty badly ...

How do I access this function / function?

Is there any javascript? Jquery HTML?

Thank you very much! Aaron

+6
source share
5 answers

after the jQuery extension, it will be established whether the skype extension is installed or not. if it is installed, you can delete the text to which the link is placed, the plain text posted.

jQuery.extend({ skype : function(failureFunction) { var $ = jQuery; if ($.browser.safari || $.browser.opera) { return true; } else if ($.browser.msie) { try { if (new ActiveXObject("Skype.Detection")) return true; } catch(e) { } } else { if (typeof(navigator.mimeTypes["application/x-skype"]) == "object") { return true; } } $('a[href^="skype:"]').click(function() { failureFunction(); return false; }); return false; } }); 
+4
source

The solution places this meta in the / s section of the page.

 <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> 

Hope for this help

+4
source

Go to the Tools β†’ Extensions section and uncheck the Enable box next to the Skype Links extension

+2
source

How can you be sure that users browsing your site will not be able to install this plugin? You will need to handle this feature in your code so that your page does not break.

+1
source

Yes, go to your add-ons or extensions and just disable them and you will no longer be bothered.

+1
source

Source: https://habr.com/ru/post/905682/


All Articles