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
Uninstalling Click2Call To uninstall the extension right-click its icon, just right of the address bar, and select Remove from Chrome... You can also uninstall the extension by clicking Manage extensions. If you have hidden the extension's icon, click on Chrome's menu and select Extensions>More tools.
To disable click Settings > Administration > System Settings and on the General tab, Set the IM presence option to Yes or No. CRMUG, I am wrapping up regression testing for the version 9 upgrade, and I noticed the phone fields now have a Skype click-to-call hyperlink.
Disabling the click to call UI To do so, head on over to Google Chrome's experimental feature configuration through this URL: chrome://flags/#click-to-call-ui. From there, just simply disable this setting.
From Chrome, navigate to Settings > Extensions > Dialpad Extension > Details. Select Extension Options > Use this Dialpad app to place all calls:. You can choose the desktop app, the Chrome app, or the web app. It will then serve as your default choice for placing calls using the click-to-call feature from Chrome.
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;
}
});
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With