Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

skype number recognition

Tags:

html

skype

Is it possible to turn off skype number recognition with some html or javascript? I'm NOT interested in turning it off only for my machine but for anyone visiting my page. I have seen the

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

business but it does not work for me with Firefox. I've also seen comments that this meta is not recognized in skype 4.2.

This is quite a problem since skype is recognizing data in table as phone numbers. For example, the line with two angles

00 23 58 17 45 00

is recognized as a phone number in Chad!

I know I could add some invisible rubbish to these numbers but there are a bunch of them and that's pretty ugly.

like image 753
Mike D Avatar asked Sep 19 '10 16:09

Mike D


People also ask

Can you trace a Skype number?

Although many things on the Internet are anonymous, your Skype calls aren't. Not only can the Skype service track your calls, but the people whom you call can also track some basic information.

Is your Skype number your phone number?

A Skype Number is a second phone number which is attached to your Skype account, allowing you to answer incoming calls on your Skype app anywhere. People can call you from their mobile or landline and you pick the call up in Skype.


1 Answers

You could always add the following CSS:

#skype_pnh_container, #skype_plugin_object, #skype_highlighting_settings {
    display: none !important;
}
like image 69
Adam Avatar answered Oct 12 '22 13:10

Adam