Skip to content

Instantly share code, notes, and snippets.

@pb10005
Last active March 7, 2019 09:58
Show Gist options
  • Save pb10005/d54f2f3e31a2fba2ae72a798b8017971 to your computer and use it in GitHub Desktop.
Save pb10005/d54f2f3e31a2fba2ae72a798b8017971 to your computer and use it in GitHub Desktop.
ブックマークレット

旧Twitterで、タイムライン上にメディアツイートのみ表示する

javascript:(
  function(){
    var elms = document.getElementsByClassName("tweet"),
    for(var key in elms){
      var elm = elms[key];
      if(elm.getElementsByClassName("AdaptiveMedia").length === 0) {
        elm.style.display="none";
      }
    }
  }
)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment