Skip to content

Instantly share code, notes, and snippets.

@twilight-sparkle-irl
Created April 1, 2016 09:48
Show Gist options
  • Save twilight-sparkle-irl/a8149af8486249a34c05de3fa029bfce to your computer and use it in GitHub Desktop.
Save twilight-sparkle-irl/a8149af8486249a34c05de3fa029bfce to your computer and use it in GitHub Desktop.
Tweetdeck just added an engagement filter that hides tweets that it thinks you won't like. Use this script to disable it.
// ==UserScript==
// @name Fix Tweetdeck
// @namespace NO_BOOT_DEVICE/antiengagementfilter
// @description Tweetdeck made it so you can't see all of your timeline and some posts will just go to the VOID. this fixes that
// @include https://tweetdeck.twitter.com/*
// @version 1
// @grant none
// ==/UserScript==
TD.decider.updateFromBackend = _.wrap(TD.decider.updateFromBackend, (function(func, dict) {
dict.hearts_and_likes2 = false // delete this line to get hearts and likes instead of favorites
dict.engagement_filter = false
return func(dict)
}))
TD.decider.updateForLoginAccount()
@fortserious
Copy link

Very sneaky. Thanks for the heads-up!

Copy link

ghost commented Nov 13, 2016

Is this still relevant ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment