Skip to main content

Viber Offline Installer free download for All devices







With Viber, everyone in the world can connect. Freely. Viber users can send free text messages, photo messages, video messages and share locations with other users. Users can also make free HD-quality calls to other Viber users on iPhone®, Android™, Windows Phone, Blackberry®, Windows®, Mac, Symbian, Nokia S40 and Bada devices over 3G/4G or WiFi connections. With over 360 million users in over 193 countries, Viber is constantly innovating by introducing new platforms and adding fun new features including stickers and emoticons.


Viber is developed by Viber Media, a privately held company founded in February 2010.


Follow Viber on FacebookTwitter and Google+ for updates and news.


If you have questions or feedback, feel free to contact us at support@viber.com, or visit http://support.viber.com/.



Viber for Windows lets you send free messages and make free calls to other Viber users, on any device and network, in any country! Viber syncs your contacts, messages and call history with your mobile device.



  1. Best-quality HD voice calls

  2. Video calls

  3. Text, photo and sticker messages

  4. Full sync between your mobile and Windows

  5. Transfer ongoing calls between devices

  6. Download Viber, enter your phone number, and start connecting with your friends.




Viber for desktop


Viber for Desktop lets you send free messages as well as make free calls to other Viber users, on any device and network, in any country!








Viber for Windows 8


With Viber for Windows 8, you can send messages and make calls from any Windows 8 computer or tablet to other Viber users - for free!






Viber for Windows Phone


Viber for Windows Phone lets you send free text, sticker and photo messages and make free calls to anyone else who also has Viber.








Viber for Android

Free messages and calls from any Android device, including tablets, on any network. All you need is 3G or WiFi and you can connect with other Viber users anywhere!





Viber for Nokia lets you communicate with other Viber users anywhere, on any device, and best of all - for free!






Viber for BlackBerry

With Viber for Blackberry, you can send free messages and make free calls to any Viber user on any platform, on any device, in any network and country!









Viber for iOS

With Viber for iOS, you can make free calls and send free text, sticker, photo, voice and video messages to other Viber users, on any device, in any network and country!












Comments

Popular posts from this blog

Bouncy Content Filter for big Website

This space-saving content filter allows the users to switch from one category to the other in a fancy way! Each click fires the rotation of the gallery images, revealing the items belonging to the selected category. Content filters  are particularly useful for big websites, where each pixel counts. Lets say you are showing the “ last products ” of your e-commerce . How about giving the users the option to switch to the “most popular” products without a page refresh? A good solution could be to hide the “most popular” items right behind the “last products”, then use the power of CSS3 3D Transforms to rotate the items when the user switches from one option to the other. The bounce effect is optional, but you get the idea! The rotation won’t work on older browsers like IE9, but the experience won’t be broken – just a display on/off with no transitions. Lets dive into the code! Creating the structure We wrapped the filter into a <nav> element. The filter structur...

Content slider with Zoom Effect for a predefined area in each slide

Zoom Slider Today’s Blueprint is a simple content slider with depth-like zoom functionality. Each slide has a predefined zoom area that will be used to calculate the appropriate scale value for a fullscreen fill. Once the icon for zooming is clicked, the zoom area as well as the page get scaled, creating the illusion that the viewer is approaching the item. Once the whole page is covered, we show some more details. Navigating the slider will animate the inner parts of the slide, allowing for an independent control of the image area and the title. We are using CSS transitions and dymanic.js for moving the slide elements. Dymanic.js by MichaĆ«l Villar is a JavaScript library to create physics-based animations. Please note that we are using a couple of modern CSS properties, so only contemporary browsers are supported. The HTML <!-- Main container --> <div class="container"> <!-- Blueprint header --> <header class="bp-header cf"> ...

An AJAX Based Shopping Cart with Drap Drop Item Effect

An AJAX Based Shopping Cart In this tutorial we will create an AJAX Based Shopping Cart with Drag and Drop feature.You can easily use this shopping cart in you store.All the products are going to be stored in a MySQL database, with PHP showing and processing the data. So go ahead, download the demo files and start reading. Step 1 – the MySQL Database If you want to set up a working demo, you’ll need to execute the following SQL code in your database manager (e.g. phpMyAdmin). It will set up the table and insert a few products. The code is also available in table.sql in the demo files. table.sql CREATE TABLE IF NOT EXISTS `internet_shop` ( `id` int ( 6 ) NOT NULL auto_increment, `img` varchar ( 32 ) collate utf8_unicode_ci NOT NULL default '' , `name` varchar ( 64 ) collate utf8_unicode_ci NOT NULL default '' , `description` text collate utf8_unicode_ci NOT NULL , `price` double NOT NULL default '0' , PRIMARY K...