Skip to content

Instantly share code, notes, and snippets.

@dustinsenos
Created May 27, 2015 18:24
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dustinsenos/340cf5b5e36262e85b47 to your computer and use it in GitHub Desktop.
Save dustinsenos/340cf5b5e36262e85b47 to your computer and use it in GitHub Desktop.
{"data":[{"id":"1432750582849","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Trends\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\".module.trends { display: none; }\",\"domains\":[\"twitter.com\"],\"regexps\":[],\"urlPrefixes\":[],\"urls\":[\"\"]}]}"},{"id":"1432750082921","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Promoted Tweets\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\"*[data-promoted] { display:none; }\",\"domains\":[\"twitter.com\"],\"regexps\":[],\"urlPrefixes\":[],\"urls\":[\"\"]}]}"},{"id":"1432750240677","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Who to Follow\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\".wtf-module,\\n.WhoToFollow {\\n\\tdisplay: none !important;\\n}\",\"domains\":[\"twitter.com\"],\"regexps\":[],\"urlPrefixes\":[],\"urls\":[\"\"]}]}"},{"id":"1432750414498","json":"{\"enabled\":true,\"name\":\"Twitter: Hide Footer\",\"url\":\"\",\"updateUrl\":\"\",\"sections\":[{\"code\":\".Footer { display: none }\",\"domains\":[\"twitter.com\"],\"regexps\":[],\"urlPrefixes\":[],\"urls\":[\"\"]}]}"}]}
@qrs
Copy link

qrs commented Jun 19, 2015

For anyone using Chrome:

  1. Add this extension: Stylish
  2. Navigate to the Stylish extension icon on the toolbar and click Manage installed styles.
  3. Click Write new style
  4. Paste this into the Code input box
.module.trends { display: none; }

.Footer { display: none }

*[data-promoted] { display:none; }

.wtf-module,
.WhoToFollow {
    display: none !important;
}

5. Click Specify. Now set the Applies to dropdown to "URLs on the domain" and type in

twitter.com

6. Click add
7. Name it whatever, enable it..
8. ???
9. Poof! Profit!


Twitter: @querln

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