Skip to main content

Read Facebook Chat Messages And Stay Undetected

Read Facebook Chat Messages And Stay Undetected



Facebook has become a great platform for socializing. Everyone knows about everyone else. People have now connected and met with friends. You get to know others and know what they have achieved up till now. In time where social media is very important in everyone’s life, it also has some serious privacy issues. Facebook is famous among people of all age groups. If you want to be up to date with news then joining platform like Facebook is a good choice. It on one hand provides information, is good for brands and marketing of products and on other hand let you have freedom of writing your thoughts openly.

facebook tricks tips emoticons


Facebook people have made it very simple to use. It is a place that is very much customized and every being counts it as its own.Facebook constantly improves itself. There are new feature introduced after every short period. Some improvements are related to privacy settings while other helps you convey your thoughts more freely. Sometime back people were worried about others viewing their profile.

 Thanks to new privacy policy that has resolved to great extent. Although whatever information Facebook attains form us is sold to advertising and research companies but they tell us and ask our permission for it. 

Latest addition to Facebook looks is in their chat. Previously people used to chat but didn’t know whether their message is received by other person or not. This created confusions but the new feature of read receipt has created more conflicts than ever. Now when you send a message to anyone you get a “Seen” report. Similarly other party sending you message gets it too. This “Seen at 00:00” has created many problems.


For instance you feel like avoiding an annoying person who constantly messages you on Facebook. Every time he sends you a message, you see it and choose to ignore it. Now Facebook read receipt feature will tell that person that you have seen his message and wont reply. 

For Google Chrome Browser:
 1. GO to this web Page Facebook
 2. ADD this Extension to Google chrome .
 3. Successfully Install 

Read Facebook Chat Messages And Stay Undetected

This causes conflicts and can disturb your terms with that person. Or in another situation you are in hurry and saw that message but wasn't able to reply. Next time that person will talk to you he/she will ask you “you saw my message and didn't reply”. In this situation you cannot say you haven’t seen it because Facebook reports it.

To avoid situations like these there is an anecdote. There are now programs available on internet then can help you un-see the read messages. Those programs can be installed in any kind of Windows and on both Google Chrome and Mozilla Firefox. All you have to do is download that chat undetected program and run it. 

Next time you open your internet browser to chat, other person will not be able to tell whether you have seen his message or not.

This new Chat undetected software is a lifesaver for many. Next time a person accuses you of not replying, you can simply tell them you haven’t seen their message and Facebook read receipt will not show it.




Comments

Popular posts from this blog

AngularJs call one method of controller in another controller .

I have seen many question about calling one method of one controller in another controller or extending scope of one controller in another controller.so here are the ways. if you want to call one controller into another or extending scope of controllers there are four methods available $rootScope.$emit() and $rootScope.$broadcast() If Second controller is child ,you can use Parent child communication . Use Services Kind of hack - with the help of angular.element() 1. $rootScope.$emit() and $rootScope.$broadcast() Controller and its scope can get destroyed, but the $rootScope remains across the application, that's why we are taking $rootScope because $rootScope is parent of all scopes . If you are performing communication from parent to child and even child wants to communicate with its siblings, you can use $broadcast If you are performing communication from child to parent ,no siblings invovled then you can use $rootScope.$emit HTML <body ng-app = ...

Closures in javascript and how do they work ?

JavaScript Closures for Dummies  Closures Are Not Magic This page explains closures so that a programmer can understand them — using working JavaScript code. It is not for gurus or functional programmers. Closures are  not hard  to understand once the core concept is grokked. However, they are impossible to understand by reading any academic papers or academically oriented information about them! This article is intended for programmers with some programming experience in a mainstream language, and who can read the following JavaScript function: function sayHello ( name ) { var text = 'Hello ' + name ; var sayAlert = function () { alert ( text ); } sayAlert (); } An Example of a Closure Two one sentence summaries: a closure is the local variables for a function — kept alive  after  the function has returned, or a closure is a stack-frame which is  not deallocated  when the function returns (as if a 'stack-fr...

Working with $scope.$emit , $scope.$broadcast and $scope.$on

First of all, parent-child scope relation does matter. You have two possibilities to emit some event: $broadcast  -- dispatches the event downwards to all child scopes, $emit  -- dispatches the event upwards through the scope hierarchy. If scope of  firstCtrl  is parent of the  secondCtrl  scope, your code should work by replacing  $emit  by  $broadcast  in  firstCtrl : function firstCtrl ( $scope ) { $scope . $broadcast ( 'someEvent' , [ 1 , 2 , 3 ]); } function secondCtrl ( $scope ) { $scope . $on ( 'someEvent' , function ( event , mass ) { console . log ( mass ); }); } In case there is no parent-child relation between your scopes you can inject  $rootScope  into the controller and broadcast the event to all child scopes (i.e. also  secondCtrl ). function firstCtrl ( $rootScope ) { $rootScope . $broadcast ( 'someEvent' , [ 1 , 2 , 3 ]); } Finally, when you need to ...