Advertisement
Guest User

Ben Blank

a guest
Aug 22nd, 2010
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           Google Reader - pubDate fix
  3. // @namespace      http://gecko.535design.com/grease/
  4. // @description    Cause GR to use an item's publish date for sorting and display (default is "recieved" date).
  5. // @include        http://www.google.com/reader/view/*
  6. // @run-at         document-end
  7. // ==/UserScript==
  8.  
  9. setTimeout("(function(){var o=window.Eo;window.Eo=function(a){var n=new o(a);n.Ui=n.rG||n.hx;return n}})()", 0);
  10.  
  11. // expanded script:
  12. // (function() {
  13. //     var oldEo = Eo;
  14. //
  15. //     Eo = function(data) {
  16. //         var item = new oldEo(data);
  17. //
  18. //         item.Ui = item.rG || item.hx; // crawled = updated || published
  19. //
  20. //         return item;
  21. //     }
  22. // })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement