Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. // This can be run by both pasting it into the Javascript console
  2. // and by using it as a userscript.
  3.  
  4. // == CONFIG ==
  5. // You can view more TD.deciders by running
  6. // TD.decider.getAll() in the JS console.
  7. window.decider_override = {
  8. "hearts_and_likes2": true, // revert likes to favorites
  9. "dm_rounded_avatars": false, // make avatars in dms nonround
  10. "simplified_replies": false // remove "Replying to" replacing mentions
  11. }
  12. // == END CONFIG ==
  13. TD.decider.updateFromBackend = _.wrap(TD.decider.updateFromBackend, (function(func, dict) {
  14. for (var a in window.decider_override) { dict[a] = window.decider_override[a]; }
  15. return func(dict)
  16. }))
  17.  
  18. TD.decider.updateForGuestId()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement