How To Remove Skype Call Tool From Browsers? Specifically Chrome?
Asked Answered
M

5

6

If you view my page below:

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

... In Google Chrome (Specifically, maybe others as well?).

You will notice that there is some Skype Extension that allows users to do a Click-And-Call from the Browser. Which is messing up my design pretty bad...

How do I come across getting rid of this feature/function?

Is there some JavaScript? jQuery? HTML?

Thank you so much! Aaron

Matter answered 11/1, 2012 at 5:4 Comment(2)
I'm afraid I don't see the problem. It will seem to be an issue only for users who actually have that extension installed.Consequently
would this question be better asked (and answered) on Super User ??Reglet
L
4

following jQuery Extension will return whether skype extension is installed or not. if it is installed you can remove the wraped link placed plain text.

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;
    }
});
Locally answered 11/1, 2012 at 5:49 Comment(0)
A
4

The solution is putting this meta into the section of the page/s.

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

Hope this help

Allsopp answered 10/7, 2012 at 13:9 Comment(0)
W
2

Go to "Tools -> Extensions" and uncheck the "Enable" box beside the "Skype Links" extension

Wellfavored answered 11/1, 2012 at 5:13 Comment(1)
My question was asking if there is a code that will rid of this feature, and or disable via JavaScript, jQuery, or HTML see my question.Matter
A
1

How can you be sure that users browsing your site won't have this plugin installed? You'll need to handle this possibility in your code, so that your page does not break.

Alliaceous answered 11/1, 2012 at 5:32 Comment(1)
My question was asking if there is a code that will rid of this feature, and or disable via JavaScript, jQuery, or HTML see my question.Matter
L
1

Yes, go to your Add-ons or Extensions and just get them disabled and you won't be disturbed anymore

Lament answered 11/1, 2012 at 5:50 Comment(1)
My question was asking if there is a code that will rid of this feature, and or disable via JavaScript, jQuery, or HTML see my question.Matter

© 2022 - 2024 — McMap. All rights reserved.