Last active
January 17, 2017 03:03
-
-
Save nicolas-t/6007522 to your computer and use it in GitHub Desktop.
Revisions
-
nicolas-t revised this gist
Jul 16, 2013 . 1 changed file with 6 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,10 +9,10 @@ // ==/UserScript== (function() { var proxy = window.XMLHttpRequest.prototype.open; window.XMLHttpRequest.prototype.open = function() { if( arguments[1] !== '/ajax/mercury/change_read_status.php') { return proxy.apply(this, [].slice.call(arguments)); } }; })(); -
nicolas-t created this gist
Jul 16, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ // ==UserScript== // @name Facebook read status // @description block facebook's "read status" notification on facebook chat. // @namespace frs // @include http://www.facebook.com/* // @include https://www.facebook.com/* // @grant none // @version 1 // ==/UserScript== (function() { var proxy = window.XMLHttpRequest.prototype.open; window.XMLHttpRequest.prototype.open = function() { if( arguments[1] !== '/ajax/mercury/change_read_status.php'){ return proxy.apply(this, [].slice.call(arguments)); } }; })();