Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I remove Skype phone number recognition?

If Skype is installed, phone numbers are showing up with a Skype icon in some browsers.

I don't want to show Skype icons anywhere, ever.

Is there any JavaScript or PHP function that can handle this?

like image 615
Bharanikumar Avatar asked Aug 10 '10 11:08

Bharanikumar


People also ask

Does Skype reveal your phone number?

When you set up caller identification, your mobile number or Skype Number is displayed when you call mobiles and landlines from Skype. Caller identification is free to set up and use.

Why is there a number on my Skype icon?

If you are signed in to Skype and you receive an instant message when the conversation window is not open, a numbered badge will appear next to the contact in the sidebar. The number displayed indicates the number of unread messages in the conversation. A red numbered badge will also appear on Skype in the dock.


1 Answers

Use the following CSS to prevent skype from formatting the numbers on your page:

span.skype_pnh_container {display:none !important;}
span.skype_pnh_print_container {display:inline !important;}

edit Skype starts adding numbers in the class names to make them unique. You can solve by using the new Css selectors

span.skype_pnh_container {display:none !important;}
span.skype_pnh_print_container, span[class^="skype_pnh_print_container"] {display:inline !important;} 
like image 165
hans Avatar answered Sep 27 '22 17:09

hans